2 * arch/arm/plat-omap/include/mach/board.h
4 * Information structures for board-specific data
6 * Copyright (C) 2004 Nokia Corporation
7 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
13 #include <linux/types.h>
15 #include <mach/gpio-switch.h>
17 /* Different peripheral ids */
18 #define OMAP_TAG_CLOCK 0x4f01
19 #define OMAP_TAG_SERIAL_CONSOLE 0x4f03
20 #define OMAP_TAG_USB 0x4f04
21 #define OMAP_TAG_LCD 0x4f05
22 #define OMAP_TAG_GPIO_SWITCH 0x4f06
23 #define OMAP_TAG_UART 0x4f07
24 #define OMAP_TAG_FBMEM 0x4f08
25 #define OMAP_TAG_STI_CONSOLE 0x4f09
26 #define OMAP_TAG_CAMERA_SENSOR 0x4f0a
28 #define OMAP_TAG_BOOT_REASON 0x4f80
29 #define OMAP_TAG_FLASH_PART 0x4f81
30 #define OMAP_TAG_VERSION_STR 0x4f82
32 struct omap_clock_config {
33 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
37 struct omap_serial_console_config {
42 struct omap_sti_console_config {
47 struct omap_camera_sensor_config {
49 int (*power_on)(void * data);
50 int (*power_off)(void * data);
53 struct omap_usb_config {
54 /* Configure drivers according to the connectors on your board:
55 * - "A" connector (rectagular)
56 * ... for host/OHCI use, set "register_host".
57 * - "B" connector (squarish) or "Mini-B"
58 * ... for device/gadget use, set "register_dev".
59 * - "Mini-AB" connector (very similar to Mini-B)
60 * ... for OTG use as device OR host, initialize "otg"
62 unsigned register_host:1;
63 unsigned register_dev:1;
64 u8 otg; /* port number, 1-based: usb1 == 2 */
68 /* implicitly true if otg: host supports remote wakeup? */
71 /* signaling pins used to talk to transceiver on usbN:
73 * 2 == usb0-only, using internal transceiver
74 * 3 == 3 wire bidirectional
75 * 4 == 4 wire bidirectional
76 * 6 == 6 wire unidirectional (or TLL)
81 struct omap_lcd_config {
90 struct omap_backlight_config {
91 int default_intensity;
92 int (*set_power)(struct device *dev, int state);
93 int (*check_fb)(struct fb_info *fb);
96 struct omap_fbmem_config {
101 struct omap_pwm_led_platform_data {
105 void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
108 /* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
109 struct omap_gpio_switch_config {
114 int key_code:24; /* Linux key code */
117 struct omap_uart_config {
118 /* Bit field of UARTs present; bit 0 --> UART1 */
119 unsigned int enabled_uarts;
123 struct omap_flash_part_config {
127 struct omap_boot_reason_config {
131 struct omap_version_config {
137 #include <mach/board-nokia.h>
139 struct omap_board_config_entry {
145 struct omap_board_config_kernel {
150 extern const void *__omap_get_config(u16 tag, size_t len, int nr);
152 #define omap_get_config(tag, type) \
153 ((const type *) __omap_get_config((tag), sizeof(type), 0))
154 #define omap_get_nr_config(tag, type, nr) \
155 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
157 extern const void *omap_get_var_config(u16 tag, size_t *len);
159 extern struct omap_board_config_kernel *omap_board_config;
160 extern int omap_board_config_size;
163 /* for TI reference platforms sharing the same debug card */
164 extern int debug_card_init(u32 addr, unsigned gpio);