linux/arch/arm/mach-pxa/devices.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   2extern struct platform_device pxa_device_pmu;
   3extern struct platform_device pxa_device_mci;
   4extern struct platform_device pxa3xx_device_mci2;
   5extern struct platform_device pxa3xx_device_mci3;
   6extern struct platform_device pxa25x_device_udc;
   7extern struct platform_device pxa27x_device_udc;
   8extern struct platform_device pxa3xx_device_u2d;
   9extern struct platform_device pxa_device_fb;
  10extern struct platform_device pxa_device_ffuart;
  11extern struct platform_device pxa_device_btuart;
  12extern struct platform_device pxa_device_stuart;
  13extern struct platform_device pxa_device_hwuart;
  14extern struct platform_device pxa_device_i2c;
  15extern struct platform_device pxa_device_i2s;
  16extern struct platform_device pxa_device_ficp;
  17extern struct platform_device sa1100_device_rtc;
  18extern struct platform_device pxa_device_rtc;
  19extern struct platform_device pxa_device_ac97;
  20
  21extern struct platform_device pxa27x_device_i2c_power;
  22extern struct platform_device pxa27x_device_ohci;
  23extern struct platform_device pxa27x_device_keypad;
  24
  25extern struct platform_device pxa25x_device_ssp;
  26extern struct platform_device pxa25x_device_nssp;
  27extern struct platform_device pxa25x_device_assp;
  28extern struct platform_device pxa27x_device_ssp1;
  29extern struct platform_device pxa27x_device_ssp2;
  30extern struct platform_device pxa27x_device_ssp3;
  31extern struct platform_device pxa3xx_device_ssp1;
  32extern struct platform_device pxa3xx_device_ssp2;
  33extern struct platform_device pxa3xx_device_ssp3;
  34extern struct platform_device pxa3xx_device_ssp4;
  35
  36extern struct platform_device pxa25x_device_pwm0;
  37extern struct platform_device pxa25x_device_pwm1;
  38extern struct platform_device pxa27x_device_pwm0;
  39extern struct platform_device pxa27x_device_pwm1;
  40
  41extern struct platform_device pxa3xx_device_nand;
  42extern struct platform_device pxa3xx_device_i2c_power;
  43
  44extern struct platform_device pxa3xx_device_gcu;
  45
  46extern struct platform_device pxa_device_asoc_platform;
  47extern struct platform_device pxa_device_asoc_ssp1;
  48extern struct platform_device pxa_device_asoc_ssp2;
  49extern struct platform_device pxa_device_asoc_ssp3;
  50extern struct platform_device pxa_device_asoc_ssp4;
  51
  52extern struct platform_device pxa25x_device_gpio;
  53extern struct platform_device pxa27x_device_gpio;
  54extern struct platform_device pxa3xx_device_gpio;
  55extern struct platform_device pxa93x_device_gpio;
  56
  57void __init pxa_register_device(struct platform_device *dev, void *data);
  58void __init pxa2xx_set_dmac_info(int nb_channels, int nb_requestors);
  59
  60struct i2c_pxa_platform_data;
  61extern void pxa_set_i2c_info(struct i2c_pxa_platform_data *info);
  62#ifdef CONFIG_PXA27x
  63extern void pxa27x_set_i2c_power_info(struct i2c_pxa_platform_data *info);
  64#endif
  65#ifdef CONFIG_PXA3xx
  66extern void pxa3xx_set_i2c_power_info(struct i2c_pxa_platform_data *info);
  67#endif
  68