PCI: make no_pci_devices() use the pci_bus_type list
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-avr32 / arch-at32ap / board.h
blob7597b0bd2f01d6527f5f8db835c0c10a2521b6b0
1 /*
2 * Platform data definitions.
3 */
4 #ifndef __ASM_ARCH_BOARD_H
5 #define __ASM_ARCH_BOARD_H
7 #include <linux/types.h>
9 #define GPIO_PIN_NONE (-1)
11 /* Add basic devices: system manager, interrupt controller, portmuxes, etc. */
12 void at32_add_system_devices(void);
14 #define ATMEL_MAX_UART 4
15 extern struct platform_device *atmel_default_console_device;
17 struct atmel_uart_data {
18 short use_dma_tx; /* use transmit DMA? */
19 short use_dma_rx; /* use receive DMA? */
20 void __iomem *regs; /* virtual base address, if any */
22 void at32_map_usart(unsigned int hw_id, unsigned int line);
23 struct platform_device *at32_add_device_usart(unsigned int id);
25 struct eth_platform_data {
26 u32 phy_mask;
27 u8 is_rmii;
29 struct platform_device *
30 at32_add_device_eth(unsigned int id, struct eth_platform_data *data);
32 struct spi_board_info;
33 struct platform_device *
34 at32_add_device_spi(unsigned int id, struct spi_board_info *b, unsigned int n);
36 struct atmel_lcdfb_info;
37 struct platform_device *
38 at32_add_device_lcdc(unsigned int id, struct atmel_lcdfb_info *data,
39 unsigned long fbmem_start, unsigned long fbmem_len);
41 struct usba_platform_data {
42 int vbus_pin;
44 struct platform_device *
45 at32_add_device_usba(unsigned int id, struct usba_platform_data *data);
47 struct ide_platform_data {
48 u8 cs;
50 struct platform_device *
51 at32_add_device_ide(unsigned int id, unsigned int extint,
52 struct ide_platform_data *data);
54 /* mask says which PWM channels to mux */
55 struct platform_device *at32_add_device_pwm(u32 mask);
57 /* depending on what's hooked up, not all SSC pins will be used */
58 #define ATMEL_SSC_TK 0x01
59 #define ATMEL_SSC_TF 0x02
60 #define ATMEL_SSC_TD 0x04
61 #define ATMEL_SSC_TX (ATMEL_SSC_TK | ATMEL_SSC_TF | ATMEL_SSC_TD)
63 #define ATMEL_SSC_RK 0x10
64 #define ATMEL_SSC_RF 0x20
65 #define ATMEL_SSC_RD 0x40
66 #define ATMEL_SSC_RX (ATMEL_SSC_RK | ATMEL_SSC_RF | ATMEL_SSC_RD)
68 struct platform_device *
69 at32_add_device_ssc(unsigned int id, unsigned int flags);
71 struct platform_device *at32_add_device_twi(unsigned int id);
72 struct platform_device *at32_add_device_mci(unsigned int id);
73 struct platform_device *at32_add_device_ac97c(unsigned int id);
74 struct platform_device *at32_add_device_abdac(unsigned int id);
76 struct cf_platform_data {
77 int detect_pin;
78 int reset_pin;
79 int vcc_pin;
80 int ready_pin;
81 u8 cs;
83 struct platform_device *
84 at32_add_device_cf(unsigned int id, unsigned int extint,
85 struct cf_platform_data *data);
87 #endif /* __ASM_ARCH_BOARD_H */