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