]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/plat-omap/include/mach/board.h
Merge branch 'omap-fixes'
[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_SERIAL_CONSOLE 0x4f03
20 #define OMAP_TAG_LCD            0x4f05
21 #define OMAP_TAG_GPIO_SWITCH    0x4f06
22 #define OMAP_TAG_UART           0x4f07
23 #define OMAP_TAG_FBMEM          0x4f08
24 #define OMAP_TAG_STI_CONSOLE    0x4f09
25 #define OMAP_TAG_CAMERA_SENSOR  0x4f0a
26 #define OMAP_TAG_PARTITION      0x4f0b
27 #define OMAP_TAG_TEA5761        0x4f10
28 #define OMAP_TAG_TMP105         0x4f11
29
30 #define OMAP_TAG_BOOT_REASON    0x4f80
31 #define OMAP_TAG_FLASH_PART_STR 0x4f81
32 #define OMAP_TAG_VERSION_STR    0x4f82
33
34 struct omap_clock_config {
35         /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
36         u8 system_clock_type;
37 };
38
39 struct omap_serial_console_config {
40         u8 console_uart;
41         u32 console_speed;
42 };
43
44 struct omap_sti_console_config {
45         unsigned enable:1;
46         u8 channel;
47 };
48
49 struct omap_usb_config {
50         /* Configure drivers according to the connectors on your board:
51          *  - "A" connector (rectagular)
52          *      ... for host/OHCI use, set "register_host".
53          *  - "B" connector (squarish) or "Mini-B"
54          *      ... for device/gadget use, set "register_dev".
55          *  - "Mini-AB" connector (very similar to Mini-B)
56          *      ... for OTG use as device OR host, initialize "otg"
57          */
58         unsigned        register_host:1;
59         unsigned        register_dev:1;
60         u8              otg;    /* port number, 1-based:  usb1 == 2 */
61
62         u8              hmc_mode;
63
64         /* implicitly true if otg:  host supports remote wakeup? */
65         u8              rwc;
66
67         /* signaling pins used to talk to transceiver on usbN:
68          *  0 == usbN unused
69          *  2 == usb0-only, using internal transceiver
70          *  3 == 3 wire bidirectional
71          *  4 == 4 wire bidirectional
72          *  6 == 6 wire unidirectional (or TLL)
73          */
74         u8              pins[3];
75 };
76
77 struct omap_lcd_config {
78         char panel_name[16];
79         char ctrl_name[16];
80         s16  nreset_gpio;
81         u8   data_lines;
82 };
83
84 struct device;
85 struct fb_info;
86 struct omap_backlight_config {
87         int default_intensity;
88         int (*set_power)(struct device *dev, int state);
89         int (*check_fb)(struct fb_info *fb);
90 };
91
92 struct omap_fbmem_config {
93         u32 start;
94         u32 size;
95 };
96
97 struct omap_pwm_led_platform_data {
98         const char *name;
99         int intensity_timer;
100         int blink_timer;
101         void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
102 };
103
104 /* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
105 struct omap_gpio_switch_config {
106         char name[12];
107         u16 gpio;
108         u8 flags:4;
109         u8 type:4;
110         unsigned int key_code:24; /* Linux key code */
111 };
112
113 struct omap_uart_config {
114         /* Bit field of UARTs present; bit 0 --> UART1 */
115         unsigned int enabled_uarts;
116 };
117
118 struct omap_tea5761_config {
119         u16 enable_gpio;
120 };
121
122 /* This cannot be passed from the bootloader */
123 struct omap_tmp105_config {
124         u16 tmp105_irq_pin;
125         int (* set_power)(int enable);
126 };
127
128 struct omap_partition_config {
129         char name[16];
130         unsigned int size;
131         unsigned int offset;
132         /* same as in include/linux/mtd/partitions.h */
133         unsigned int mask_flags;
134 };
135
136 struct omap_flash_part_str_config {
137         char part_table[0];
138 };
139
140 struct omap_boot_reason_config {
141         char reason_str[12];
142 };
143
144 struct omap_version_config {
145         char component[12];
146         char version[12];
147 };
148
149 struct omap_board_config_entry {
150         u16 tag;
151         u16 len;
152         u8  data[0];
153 };
154
155 struct omap_board_config_kernel {
156         u16 tag;
157         const void *data;
158 };
159
160 extern const void *__omap_get_config(u16 tag, size_t len, int nr);
161
162 #define omap_get_config(tag, type) \
163         ((const type *) __omap_get_config((tag), sizeof(type), 0))
164 #define omap_get_nr_config(tag, type, nr) \
165         ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
166
167 extern const void *omap_get_var_config(u16 tag, size_t *len);
168
169 extern struct omap_board_config_kernel *omap_board_config;
170 extern int omap_board_config_size;
171
172
173 /* for TI reference platforms sharing the same debug card */
174 extern int debug_card_init(u32 addr, unsigned gpio);
175
176 #endif