2 * linux/include/asm-arm/arch-omap/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/config.h>
14 #include <linux/types.h>
16 /* Different peripheral ids */
17 #define OMAP_TAG_CLOCK 0x4f01
18 #define OMAP_TAG_MMC 0x4f02
19 #define OMAP_TAG_UART 0x4f03
20 #define OMAP_TAG_USB 0x4f04
21 #define OMAP_TAG_LCD 0x4f05
22 #define OMAP_TAG_GPIO_SWITCH 0x4f06
24 #define OMAP_TAG_BOOT_REASON 0x4f80
25 #define OMAP_TAG_FLASH_PART 0x4f81
27 struct omap_clock_config
{
28 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
32 struct omap_mmc_config
{
34 s16 mmc1_power_pin
, mmc2_power_pin
;
35 s16 mmc1_switch_pin
, mmc2_switch_pin
;
38 struct omap_uart_config
{
43 struct omap_usb_config
{
44 /* Configure drivers according to the connectors on your board:
45 * - "A" connector (rectagular)
46 * ... for host/OHCI use, set "register_host".
47 * - "B" connector (squarish) or "Mini-B"
48 * ... for device/gadget use, set "register_dev".
49 * - "Mini-AB" connector (very similar to Mini-B)
50 * ... for OTG use as device OR host, initialize "otg"
52 unsigned register_host
:1;
53 unsigned register_dev
:1;
54 u8 otg
; /* port number, 1-based: usb1 == 2 */
58 /* implicitly true if otg: host supports remote wakeup? */
61 /* signaling pins used to talk to transceiver on usbN:
63 * 2 == usb0-only, using internal transceiver
64 * 3 == 3 wire bidirectional
65 * 4 == 4 wire bidirectional
66 * 6 == 6 wire unidirectional (or TLL)
71 struct omap_lcd_config
{
83 #define OMAP_GPIO_SWITCH_TYPE_COVER 0x0000
84 #define OMAP_GPIO_SWITCH_TYPE_CONNECTION 0x0001
85 #define OMAP_GPIO_SWITCH_FLAG_INVERTED 0x0001
86 struct omap_gpio_switch_config
{
91 int key_code
:24; /* Linux key code */
94 struct omap_flash_part_config
{
98 struct omap_boot_reason_config
{
103 struct omap_board_config_entry
{
109 struct omap_board_config_kernel
{
114 extern const void *__omap_get_config(u16 tag
, size_t len
, int nr
);
116 #define omap_get_config(tag, type) \
117 ((const type *) __omap_get_config((tag), sizeof(type), 0))
118 #define omap_get_nr_config(tag, type, nr) \
119 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
121 extern const void *omap_get_var_config(u16 tag
, size_t *len
);
123 extern struct omap_board_config_kernel
*omap_board_config
;
124 extern int omap_board_config_size
;