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 <plat/gpio-switch.h>
18 * OMAP35x EVM revision
19 * Run time detection of EVM revision is done by reading Ethernet
25 OMAP3EVM_BOARD_GEN_1
= 0, /* EVM Rev between A - D */
26 OMAP3EVM_BOARD_GEN_2
, /* EVM Rev >= Rev E */
29 /* Different peripheral ids */
30 #define OMAP_TAG_CLOCK 0x4f01
31 #define OMAP_TAG_LCD 0x4f05
32 #define OMAP_TAG_GPIO_SWITCH 0x4f06
33 #define OMAP_TAG_FBMEM 0x4f08
34 #define OMAP_TAG_STI_CONSOLE 0x4f09
35 #define OMAP_TAG_CAMERA_SENSOR 0x4f0a
37 #define OMAP_TAG_BOOT_REASON 0x4f80
38 #define OMAP_TAG_FLASH_PART 0x4f81
39 #define OMAP_TAG_VERSION_STR 0x4f82
41 struct omap_clock_config
{
42 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
46 struct omap_serial_console_config
{
51 struct omap_sti_console_config
{
56 struct omap_camera_sensor_config
{
58 int (*power_on
)(void * data
);
59 int (*power_off
)(void * data
);
62 struct omap_usb_config
{
63 /* Configure drivers according to the connectors on your board:
64 * - "A" connector (rectagular)
65 * ... for host/OHCI use, set "register_host".
66 * - "B" connector (squarish) or "Mini-B"
67 * ... for device/gadget use, set "register_dev".
68 * - "Mini-AB" connector (very similar to Mini-B)
69 * ... for OTG use as device OR host, initialize "otg"
71 unsigned register_host
:1;
72 unsigned register_dev
:1;
73 u8 otg
; /* port number, 1-based: usb1 == 2 */
77 /* implicitly true if otg: host supports remote wakeup? */
80 /* signaling pins used to talk to transceiver on usbN:
82 * 2 == usb0-only, using internal transceiver
83 * 3 == 3 wire bidirectional
84 * 4 == 4 wire bidirectional
85 * 6 == 6 wire unidirectional (or TLL)
89 struct platform_device
*udc_device
;
90 struct platform_device
*ohci_device
;
91 struct platform_device
*otg_device
;
93 u32 (*usb0_init
)(unsigned nwires
, unsigned is_device
);
94 u32 (*usb1_init
)(unsigned nwires
);
95 u32 (*usb2_init
)(unsigned nwires
, unsigned alt_pingroup
);
98 struct omap_lcd_config
{
107 struct omap_backlight_config
{
108 int default_intensity
;
109 int (*set_power
)(struct device
*dev
, int state
);
112 struct omap_fbmem_config
{
117 struct omap_pwm_led_platform_data
{
121 void (*set_power
)(struct omap_pwm_led_platform_data
*self
, int on_off
);
124 struct omap_uart_config
{
125 /* Bit field of UARTs present; bit 0 --> UART1 */
126 unsigned int enabled_uarts
;
130 struct omap_flash_part_config
{
134 struct omap_boot_reason_config
{
138 struct omap_version_config
{
143 struct omap_board_config_entry
{
149 struct omap_board_config_kernel
{
154 extern const void *__init
__omap_get_config(u16 tag
, size_t len
, int nr
);
156 #define omap_get_config(tag, type) \
157 ((const type *) __omap_get_config((tag), sizeof(type), 0))
158 #define omap_get_nr_config(tag, type, nr) \
159 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
161 extern const void *__init
omap_get_var_config(u16 tag
, size_t *len
);
163 extern struct omap_board_config_kernel
*omap_board_config
;
164 extern int omap_board_config_size
;
167 /* for TI reference platforms sharing the same debug card */
168 extern int debug_card_init(u32 addr
, unsigned gpio
);
170 /* OMAP3EVM revision */
171 #if defined(CONFIG_MACH_OMAP3EVM)
172 u8
get_omap3_evm_rev(void);
174 #define get_omap3_evm_rev() (-EINVAL)