]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - include/asm-arm/arch-omap/board.h
ARM: OMAP: Merge board specific files from N800 tree
[linux-2.6-omap-h63xx.git] / include / asm-arm / arch-omap / board.h
1 /*
2  *  linux/include/asm-arm/arch-omap/board.h
3  *
4  *  Information structures for board-specific data
5  *
6  *  Copyright (C) 2004  Nokia Corporation
7  *  Written by Juha Yrjölä <juha.yrjola@nokia.com>
8  */
9
10 #ifndef _OMAP_BOARD_H
11 #define _OMAP_BOARD_H
12
13 #include <linux/types.h>
14
15 #include <asm/arch/gpio-switch.h>
16
17 /* Different peripheral ids */
18 #define OMAP_TAG_CLOCK          0x4f01
19 #define OMAP_TAG_MMC            0x4f02
20 #define OMAP_TAG_SERIAL_CONSOLE 0x4f03
21 #define OMAP_TAG_USB            0x4f04
22 #define OMAP_TAG_LCD            0x4f05
23 #define OMAP_TAG_GPIO_SWITCH    0x4f06
24 #define OMAP_TAG_UART           0x4f07
25 #define OMAP_TAG_FBMEM          0x4f08
26 #define OMAP_TAG_STI_CONSOLE    0x4f09
27 #define OMAP_TAG_CAMERA_SENSOR  0x4f0a
28 #define OMAP_TAG_PARTITION      0x4f0b
29 #define OMAP_TAG_TEA5761        0x4f10
30 #define OMAP_TAG_TMP105         0x4f11
31
32 #define OMAP_TAG_BOOT_REASON    0x4f80
33 #define OMAP_TAG_FLASH_PART_STR 0x4f81
34 #define OMAP_TAG_VERSION_STR    0x4f82
35
36 struct omap_clock_config {
37         /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
38         u8 system_clock_type;
39 };
40
41 struct omap_mmc_conf {
42         unsigned enabled:1;
43         /* nomux means "standard" muxing is wrong on this board, and that
44          * board-specific code handled it before common init logic.
45          */
46         unsigned nomux:1;
47         /* switch pin can be for card detect (default) or card cover */
48         unsigned cover:1;
49         /* 4 wire signaling is optional, and is only used for SD/SDIO */
50         unsigned wire4:1;
51         s16 power_pin;
52         s16 switch_pin;
53         s16 wp_pin;
54 };
55
56 struct omap_mmc_config {
57         struct omap_mmc_conf mmc[2];
58 };
59
60 struct omap_serial_console_config {
61         u8 console_uart;
62         u32 console_speed;
63 };
64
65 struct omap_sti_console_config {
66         unsigned enable:1;
67         u8 channel;
68 };
69
70 struct omap_camera_sensor_config {
71         u16 reset_gpio;
72         int (*power_on)(void * data);
73         int (*power_off)(void * data);
74 };
75
76 struct omap_usb_config {
77         /* Configure drivers according to the connectors on your board:
78          *  - "A" connector (rectagular)
79          *      ... for host/OHCI use, set "register_host".
80          *  - "B" connector (squarish) or "Mini-B"
81          *      ... for device/gadget use, set "register_dev".
82          *  - "Mini-AB" connector (very similar to Mini-B)
83          *      ... for OTG use as device OR host, initialize "otg"
84          */
85         unsigned        register_host:1;
86         unsigned        register_dev:1;
87         u8              otg;    /* port number, 1-based:  usb1 == 2 */
88
89         u8              hmc_mode;
90
91         /* implicitly true if otg:  host supports remote wakeup? */
92         u8              rwc;
93
94         /* signaling pins used to talk to transceiver on usbN:
95          *  0 == usbN unused
96          *  2 == usb0-only, using internal transceiver
97          *  3 == 3 wire bidirectional
98          *  4 == 4 wire bidirectional
99          *  6 == 6 wire unidirectional (or TLL)
100          */
101         u8              pins[3];
102 };
103
104 struct omap_lcd_config {
105         char panel_name[16];
106         char ctrl_name[16];
107         s16  nreset_gpio;
108         u8   data_lines;
109 };
110
111 struct device;
112 struct fb_info;
113 struct omap_backlight_config {
114         int default_intensity;
115         int (*set_power)(struct device *dev, int state);
116         int (*check_fb)(struct fb_info *fb);
117 };
118
119 struct omap_fbmem_config {
120         u32 start;
121         u32 size;
122 };
123
124 struct omap_pwm_led_platform_data {
125         const char *name;
126         int intensity_timer;
127         int blink_timer;
128         void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
129 };
130
131 /* See include/asm-arm/arch-omap/gpio-switch.h for definitions */
132 struct omap_gpio_switch_config {
133         char name[12];
134         u16 gpio;
135         int flags:4;
136         int type:4;
137         int key_code:24; /* Linux key code */
138 };
139
140 struct omap_uart_config {
141         /* Bit field of UARTs present; bit 0 --> UART1 */
142         unsigned int enabled_uarts;
143 };
144
145 struct omap_tea5761_config {
146         u16 enable_gpio;
147 };
148
149 /* This cannot be passed from the bootloader */
150 struct omap_tmp105_config {
151         u16 tmp105_irq_pin;
152         int (* set_power)(int enable);
153 };
154
155 struct omap_partition_config {
156         char name[16];
157         unsigned int size;
158         unsigned int offset;
159         /* same as in include/linux/mtd/partitions.h */
160         unsigned int mask_flags;
161 };
162
163 struct omap_flash_part_str_config {
164         char part_table[0];
165 };
166
167 struct omap_boot_reason_config {
168         char reason_str[12];
169 };
170
171 struct omap_version_config {
172         char component[12];
173         char version[12];
174 };
175
176
177 #include <asm-arm/arch-omap/board-nokia.h>
178
179 struct omap_board_config_entry {
180         u16 tag;
181         u16 len;
182         u8  data[0];
183 };
184
185 struct omap_board_config_kernel {
186         u16 tag;
187         const void *data;
188 };
189
190 extern const void *__omap_get_config(u16 tag, size_t len, int nr);
191
192 #define omap_get_config(tag, type) \
193         ((const type *) __omap_get_config((tag), sizeof(type), 0))
194 #define omap_get_nr_config(tag, type, nr) \
195         ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
196
197 extern const void *omap_get_var_config(u16 tag, size_t *len);
198
199 extern struct omap_board_config_kernel *omap_board_config;
200 extern int omap_board_config_size;
201
202
203 /* for TI reference platforms sharing the same debug card */
204 extern int debug_card_init(u32 addr, unsigned gpio);
205
206 #endif