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_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
27 #define OMAP_TAG_BOOT_REASON 0x4f80
28 #define OMAP_TAG_FLASH_PART 0x4f81
29 #define OMAP_TAG_VERSION_STR 0x4f82
31 struct omap_clock_config
{
32 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
36 struct omap_serial_console_config
{
41 struct omap_sti_console_config
{
46 struct omap_camera_sensor_config
{
48 int (*power_on
)(void * data
);
49 int (*power_off
)(void * data
);
52 struct omap_usb_config
{
53 /* Configure drivers according to the connectors on your board:
54 * - "A" connector (rectagular)
55 * ... for host/OHCI use, set "register_host".
56 * - "B" connector (squarish) or "Mini-B"
57 * ... for device/gadget use, set "register_dev".
58 * - "Mini-AB" connector (very similar to Mini-B)
59 * ... for OTG use as device OR host, initialize "otg"
61 unsigned register_host
:1;
62 unsigned register_dev
:1;
63 u8 otg
; /* port number, 1-based: usb1 == 2 */
67 /* implicitly true if otg: host supports remote wakeup? */
70 /* signaling pins used to talk to transceiver on usbN:
72 * 2 == usb0-only, using internal transceiver
73 * 3 == 3 wire bidirectional
74 * 4 == 4 wire bidirectional
75 * 6 == 6 wire unidirectional (or TLL)
80 struct omap_lcd_config
{
89 struct omap_backlight_config
{
90 int default_intensity
;
91 int (*set_power
)(struct device
*dev
, int state
);
92 int (*check_fb
)(struct fb_info
*fb
);
95 struct omap_fbmem_config
{
100 struct omap_pwm_led_platform_data
{
104 void (*set_power
)(struct omap_pwm_led_platform_data
*self
, int on_off
);
107 /* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
108 struct omap_gpio_switch_config
{
113 int key_code
:24; /* Linux key code */
116 struct omap_uart_config
{
117 /* Bit field of UARTs present; bit 0 --> UART1 */
118 unsigned int enabled_uarts
;
122 struct omap_flash_part_config
{
126 struct omap_boot_reason_config
{
130 struct omap_version_config
{
135 struct omap_board_config_entry
{
141 struct omap_board_config_kernel
{
146 extern const void *__omap_get_config(u16 tag
, size_t len
, int nr
);
148 #define omap_get_config(tag, type) \
149 ((const type *) __omap_get_config((tag), sizeof(type), 0))
150 #define omap_get_nr_config(tag, type, nr) \
151 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
153 extern const void *omap_get_var_config(u16 tag
, size_t *len
);
155 extern struct omap_board_config_kernel
*omap_board_config
;
156 extern int omap_board_config_size
;
159 /* for TI reference platforms sharing the same debug card */
160 extern int debug_card_init(u32 addr
, unsigned gpio
);