Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
v6.9.4
 1/* SPDX-License-Identifier: GPL-2.0 */
 2#define PDMA_FILTER_PARAM(_prio, _requestor) (&(struct pxad_param) { \
 3	.prio = PXAD_PRIO_##_prio, .drcmr = _requestor })
 4struct mmp_dma_platdata;
 5
 6extern struct platform_device pxa_device_pmu;
 7extern struct platform_device pxa_device_mci;
 8extern struct platform_device pxa3xx_device_mci2;
 9extern struct platform_device pxa3xx_device_mci3;
10extern struct platform_device pxa25x_device_udc;
11extern struct platform_device pxa27x_device_udc;
 
12extern struct platform_device pxa_device_fb;
13extern struct platform_device pxa_device_ffuart;
14extern struct platform_device pxa_device_btuart;
15extern struct platform_device pxa_device_stuart;
16extern struct platform_device pxa_device_hwuart;
17extern struct platform_device pxa_device_i2c;
18extern struct platform_device pxa_device_i2s;
 
19extern struct platform_device sa1100_device_rtc;
20extern struct platform_device pxa_device_rtc;
21extern struct platform_device pxa_device_ac97;
22
23extern struct platform_device pxa27x_device_i2c_power;
24extern struct platform_device pxa27x_device_ohci;
25extern struct platform_device pxa27x_device_keypad;
26
27extern struct platform_device pxa25x_device_ssp;
28extern struct platform_device pxa25x_device_nssp;
29extern struct platform_device pxa25x_device_assp;
30extern struct platform_device pxa27x_device_ssp1;
31extern struct platform_device pxa27x_device_ssp2;
32extern struct platform_device pxa27x_device_ssp3;
33extern struct platform_device pxa3xx_device_ssp1;
34extern struct platform_device pxa3xx_device_ssp2;
35extern struct platform_device pxa3xx_device_ssp3;
36extern struct platform_device pxa3xx_device_ssp4;
37
38extern struct platform_device pxa25x_device_pwm0;
39extern struct platform_device pxa25x_device_pwm1;
40extern struct platform_device pxa27x_device_pwm0;
41extern struct platform_device pxa27x_device_pwm1;
42
43extern struct platform_device pxa3xx_device_nand;
44extern struct platform_device pxa3xx_device_i2c_power;
45
46extern struct platform_device pxa3xx_device_gcu;
47
48extern struct platform_device pxa_device_asoc_platform;
49extern struct platform_device pxa_device_asoc_ssp1;
50extern struct platform_device pxa_device_asoc_ssp2;
51extern struct platform_device pxa_device_asoc_ssp3;
52extern struct platform_device pxa_device_asoc_ssp4;
53
54extern struct platform_device pxa25x_device_gpio;
55extern struct platform_device pxa27x_device_gpio;
56extern struct platform_device pxa3xx_device_gpio;
57extern struct platform_device pxa93x_device_gpio;
58
59void __init pxa_register_device(struct platform_device *dev, void *data);
60void __init pxa2xx_set_dmac_info(struct mmp_dma_platdata *dma_pdata);
61
62struct i2c_pxa_platform_data;
63extern void pxa_set_i2c_info(struct i2c_pxa_platform_data *info);
64#ifdef CONFIG_PXA27x
65extern void pxa27x_set_i2c_power_info(struct i2c_pxa_platform_data *info);
66#endif
67#ifdef CONFIG_PXA3xx
68extern void pxa3xx_set_i2c_power_info(struct i2c_pxa_platform_data *info);
69#endif
v4.6
 
 
 
 
 
 1extern struct platform_device pxa_device_pmu;
 2extern struct platform_device pxa_device_mci;
 3extern struct platform_device pxa3xx_device_mci2;
 4extern struct platform_device pxa3xx_device_mci3;
 5extern struct platform_device pxa25x_device_udc;
 6extern struct platform_device pxa27x_device_udc;
 7extern struct platform_device pxa3xx_device_u2d;
 8extern struct platform_device pxa_device_fb;
 9extern struct platform_device pxa_device_ffuart;
10extern struct platform_device pxa_device_btuart;
11extern struct platform_device pxa_device_stuart;
12extern struct platform_device pxa_device_hwuart;
13extern struct platform_device pxa_device_i2c;
14extern struct platform_device pxa_device_i2s;
15extern struct platform_device pxa_device_ficp;
16extern struct platform_device sa1100_device_rtc;
17extern struct platform_device pxa_device_rtc;
18extern struct platform_device pxa_device_ac97;
19
20extern struct platform_device pxa27x_device_i2c_power;
21extern struct platform_device pxa27x_device_ohci;
22extern struct platform_device pxa27x_device_keypad;
23
24extern struct platform_device pxa25x_device_ssp;
25extern struct platform_device pxa25x_device_nssp;
26extern struct platform_device pxa25x_device_assp;
27extern struct platform_device pxa27x_device_ssp1;
28extern struct platform_device pxa27x_device_ssp2;
29extern struct platform_device pxa27x_device_ssp3;
30extern struct platform_device pxa3xx_device_ssp1;
31extern struct platform_device pxa3xx_device_ssp2;
32extern struct platform_device pxa3xx_device_ssp3;
33extern struct platform_device pxa3xx_device_ssp4;
34
35extern struct platform_device pxa25x_device_pwm0;
36extern struct platform_device pxa25x_device_pwm1;
37extern struct platform_device pxa27x_device_pwm0;
38extern struct platform_device pxa27x_device_pwm1;
39
40extern struct platform_device pxa3xx_device_nand;
41extern struct platform_device pxa3xx_device_i2c_power;
42
43extern struct platform_device pxa3xx_device_gcu;
44
45extern struct platform_device pxa_device_asoc_platform;
46extern struct platform_device pxa_device_asoc_ssp1;
47extern struct platform_device pxa_device_asoc_ssp2;
48extern struct platform_device pxa_device_asoc_ssp3;
49extern struct platform_device pxa_device_asoc_ssp4;
50
51extern struct platform_device pxa25x_device_gpio;
52extern struct platform_device pxa27x_device_gpio;
53extern struct platform_device pxa3xx_device_gpio;
54extern struct platform_device pxa93x_device_gpio;
55
56void __init pxa_register_device(struct platform_device *dev, void *data);