ACPI: Kconfig - depend on PM rather than selecting it
[sfrench/cifs-2.6.git] / include / asm-avr32 / arch-at32ap / board.h
1 /*
2  * Platform data definitions.
3  */
4 #ifndef __ASM_ARCH_BOARD_H
5 #define __ASM_ARCH_BOARD_H
6
7 #include <linux/types.h>
8
9 /* Add basic devices: system manager, interrupt controller, portmuxes, etc. */
10 void at32_add_system_devices(void);
11
12 #define ATMEL_MAX_UART  4
13 extern struct platform_device *atmel_default_console_device;
14
15 struct atmel_uart_data {
16         short           use_dma_tx;     /* use transmit DMA? */
17         short           use_dma_rx;     /* use receive DMA? */
18         void __iomem    *regs;          /* virtual base address, if any */
19 };
20 void at32_map_usart(unsigned int hw_id, unsigned int line);
21 struct platform_device *at32_add_device_usart(unsigned int id);
22
23 struct eth_platform_data {
24         u8      valid;
25         u8      mii_phy_addr;
26         u8      is_rmii;
27         u8      hw_addr[6];
28 };
29 struct platform_device *
30 at32_add_device_eth(unsigned int id, struct eth_platform_data *data);
31
32 struct platform_device *at32_add_device_spi(unsigned int id);
33
34 struct lcdc_platform_data {
35         unsigned long fbmem_start;
36         unsigned long fbmem_size;
37 };
38 struct platform_device *
39 at32_add_device_lcdc(unsigned int id, struct lcdc_platform_data *data);
40
41 #endif /* __ASM_ARCH_BOARD_H */