]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/include/mach/board.h
Merge current mainline tree into linux-omap tree
[linux-2.6-omap-h63xx.git] / arch / arm / plat-omap / include / mach / board.h
1 /*
2  *  arch/arm/plat-omap/include/mach/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 <mach/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         /* use the internal clock */
52         unsigned internal_clock:1;
53         s16 power_pin;
54         s16 switch_pin;
55         s16 wp_pin;
56 };
57
58 struct omap_mmc_config {
59         struct omap_mmc_conf mmc[2];
60 };
61
62 struct omap_serial_console_config {
63         u8 console_uart;
64         u32 console_speed;
65 };
66
67 struct omap_sti_console_config {
68         unsigned enable:1;
69         u8 channel;
70 };
71
72 struct omap_usb_config {
73         /* Configure drivers according to the connectors on your board:
74          *  - "A" connector (rectagular)
75          *      ... for host/OHCI use, set "register_host".
76          *  - "B" connector (squarish) or "Mini-B"
77          *      ... for device/gadget use, set "register_dev".
78          *  - "Mini-AB" connector (very similar to Mini-B)
79          *      ... for OTG use as device OR host, initialize "otg"
80          */
81         unsigned        register_host:1;
82         unsigned        register_dev:1;
83         u8              otg;    /* port number, 1-based:  usb1 == 2 */
84
85         u8              hmc_mode;
86
87         /* implicitly true if otg:  host supports remote wakeup? */
88         u8              rwc;
89
90         /* signaling pins used to talk to transceiver on usbN:
91          *  0 == usbN unused
92          *  2 == usb0-only, using internal transceiver
93          *  3 == 3 wire bidirectional
94          *  4 == 4 wire bidirectional
95          *  6 == 6 wire unidirectional (or TLL)
96          */
97         u8              pins[3];
98 };
99
100 struct omap_lcd_config {
101         char panel_name[16];
102         char ctrl_name[16];
103         s16  nreset_gpio;
104         u8   data_lines;
105 };
106
107 struct device;
108 struct fb_info;
109 struct omap_backlight_config {
110         int default_intensity;
111         int (*set_power)(struct device *dev, int state);
112         int (*check_fb)(struct fb_info *fb);
113 };
114
115 struct omap_fbmem_config {
116         u32 start;
117         u32 size;
118 };
119
120 struct omap_pwm_led_platform_data {
121         const char *name;
122         int intensity_timer;
123         int blink_timer;
124         void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
125 };
126
127 /* See include/asm-arm/arch-omap/gpio-switch.h for definitions */
128 struct omap_gpio_switch_config {
129         char name[12];
130         u16 gpio;
131         u8 flags:4;
132         u8 type:4;
133         unsigned int key_code:24; /* Linux key code */
134 };
135
136 struct omap_uart_config {
137         /* Bit field of UARTs present; bit 0 --> UART1 */
138         unsigned int enabled_uarts;
139 };
140
141 struct omap_tea5761_config {
142         u16 enable_gpio;
143 };
144
145 /* This cannot be passed from the bootloader */
146 struct omap_tmp105_config {
147         u16 tmp105_irq_pin;
148         int (* set_power)(int enable);
149 };
150
151 struct omap_partition_config {
152         char name[16];
153         unsigned int size;
154         unsigned int offset;
155         /* same as in include/linux/mtd/partitions.h */
156         unsigned int mask_flags;
157 };
158
159 struct omap_flash_part_str_config {
160         char part_table[0];
161 };
162
163 struct omap_boot_reason_config {
164         char reason_str[12];
165 };
166
167 struct omap_version_config {
168         char component[12];
169         char version[12];
170 };
171
172 struct omap_board_config_entry {
173         u16 tag;
174         u16 len;
175         u8  data[0];
176 };
177
178 struct omap_board_config_kernel {
179         u16 tag;
180         const void *data;
181 };
182
183 extern const void *__omap_get_config(u16 tag, size_t len, int nr);
184
185 #define omap_get_config(tag, type) \
186         ((const type *) __omap_get_config((tag), sizeof(type), 0))
187 #define omap_get_nr_config(tag, type, nr) \
188         ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
189
190 extern const void *omap_get_var_config(u16 tag, size_t *len);
191
192 extern struct omap_board_config_kernel *omap_board_config;
193 extern int omap_board_config_size;
194
195
196 /* for TI reference platforms sharing the same debug card */
197 extern int debug_card_init(u32 addr, unsigned gpio);
198
199 #endif