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_LCD 0x4f05
20 #define OMAP_TAG_GPIO_SWITCH 0x4f06
21 #define OMAP_TAG_FBMEM 0x4f08
22 #define OMAP_TAG_STI_CONSOLE 0x4f09
23 #define OMAP_TAG_CAMERA_SENSOR 0x4f0a
25 #define OMAP_TAG_BOOT_REASON 0x4f80
26 #define OMAP_TAG_FLASH_PART 0x4f81
27 #define OMAP_TAG_VERSION_STR 0x4f82
29 struct omap_clock_config
{
30 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
34 struct omap_serial_console_config
{
39 struct omap_sti_console_config
{
44 struct omap_camera_sensor_config
{
46 int (*power_on
)(void * data
);
47 int (*power_off
)(void * data
);
50 struct omap_usb_config
{
51 /* Configure drivers according to the connectors on your board:
52 * - "A" connector (rectagular)
53 * ... for host/OHCI use, set "register_host".
54 * - "B" connector (squarish) or "Mini-B"
55 * ... for device/gadget use, set "register_dev".
56 * - "Mini-AB" connector (very similar to Mini-B)
57 * ... for OTG use as device OR host, initialize "otg"
59 unsigned register_host
:1;
60 unsigned register_dev
:1;
61 u8 otg
; /* port number, 1-based: usb1 == 2 */
65 /* implicitly true if otg: host supports remote wakeup? */
68 /* signaling pins used to talk to transceiver on usbN:
70 * 2 == usb0-only, using internal transceiver
71 * 3 == 3 wire bidirectional
72 * 4 == 4 wire bidirectional
73 * 6 == 6 wire unidirectional (or TLL)
78 struct omap_lcd_config
{
87 struct omap_backlight_config
{
88 int default_intensity
;
89 int (*set_power
)(struct device
*dev
, int state
);
90 int (*check_fb
)(struct fb_info
*fb
);
93 struct omap_fbmem_config
{
98 struct omap_pwm_led_platform_data
{
102 void (*set_power
)(struct omap_pwm_led_platform_data
*self
, int on_off
);
105 /* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
106 struct omap_gpio_switch_config
{
111 int key_code
:24; /* Linux key code */
114 struct omap_uart_config
{
115 /* Bit field of UARTs present; bit 0 --> UART1 */
116 unsigned int enabled_uarts
;
120 struct omap_flash_part_config
{
124 struct omap_boot_reason_config
{
128 struct omap_version_config
{
133 struct omap_board_config_entry
{
139 struct omap_board_config_kernel
{
144 extern const void *__omap_get_config(u16 tag
, size_t len
, int nr
);
146 #define omap_get_config(tag, type) \
147 ((const type *) __omap_get_config((tag), sizeof(type), 0))
148 #define omap_get_nr_config(tag, type, nr) \
149 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
151 extern const void *omap_get_var_config(u16 tag
, size_t *len
);
153 extern struct omap_board_config_kernel
*omap_board_config
;
154 extern int omap_board_config_size
;
157 /* for TI reference platforms sharing the same debug card */
158 extern int debug_card_init(u32 addr
, unsigned gpio
);