blob: dfdbf06fd646c5a14d053fc36606054945b8b3aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-arm/arch-omap/board.h
3 *
4 * Information structures for board-specific data
5 *
6 * Copyright (C) 2004 Nokia Corporation
7 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
8 */
9
10#ifndef _OMAP_BOARD_H
11#define _OMAP_BOARD_H
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/types.h>
14
15/* Different peripheral ids */
16#define OMAP_TAG_CLOCK 0x4f01
17#define OMAP_TAG_MMC 0x4f02
Tony Lindgrenaf973d22005-07-10 19:58:06 +010018#define OMAP_TAG_SERIAL_CONSOLE 0x4f03
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define OMAP_TAG_USB 0x4f04
20#define OMAP_TAG_LCD 0x4f05
21#define OMAP_TAG_GPIO_SWITCH 0x4f06
Tony Lindgrenaf973d22005-07-10 19:58:06 +010022#define OMAP_TAG_UART 0x4f07
Tony Lindgren9b6553c2006-04-02 17:46:30 +010023#define OMAP_TAG_FBMEM 0x4f08
24#define OMAP_TAG_STI_CONSOLE 0x4f09
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#define OMAP_TAG_BOOT_REASON 0x4f80
27#define OMAP_TAG_FLASH_PART 0x4f81
Tony Lindgren9b6553c2006-04-02 17:46:30 +010028#define OMAP_TAG_VERSION_STR 0x4f82
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30struct omap_clock_config {
31 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
32 u8 system_clock_type;
33};
34
Tony Lindgren9839c6b2005-09-07 17:20:27 +010035struct omap_mmc_conf {
36 unsigned enabled:1;
37 /* nomux means "standard" muxing is wrong on this board, and that
38 * board-specific code handled it before common init logic.
39 */
40 unsigned nomux:1;
41 /* switch pin can be for card detect (default) or card cover */
42 unsigned cover:1;
43 /* 4 wire signaling is optional, and is only used for SD/SDIO */
44 unsigned wire4:1;
45 s16 power_pin;
46 s16 switch_pin;
47 s16 wp_pin;
48};
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050struct omap_mmc_config {
Tony Lindgren9839c6b2005-09-07 17:20:27 +010051 struct omap_mmc_conf mmc[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Tony Lindgrenaf973d22005-07-10 19:58:06 +010054struct omap_serial_console_config {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 u8 console_uart;
56 u32 console_speed;
57};
58
Tony Lindgren9b6553c2006-04-02 17:46:30 +010059struct omap_sti_console_config {
60 unsigned enable:1;
61 u8 channel;
62};
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct omap_usb_config {
65 /* Configure drivers according to the connectors on your board:
66 * - "A" connector (rectagular)
67 * ... for host/OHCI use, set "register_host".
68 * - "B" connector (squarish) or "Mini-B"
69 * ... for device/gadget use, set "register_dev".
70 * - "Mini-AB" connector (very similar to Mini-B)
71 * ... for OTG use as device OR host, initialize "otg"
72 */
73 unsigned register_host:1;
74 unsigned register_dev:1;
75 u8 otg; /* port number, 1-based: usb1 == 2 */
76
77 u8 hmc_mode;
78
79 /* implicitly true if otg: host supports remote wakeup? */
80 u8 rwc;
81
82 /* signaling pins used to talk to transceiver on usbN:
83 * 0 == usbN unused
84 * 2 == usb0-only, using internal transceiver
85 * 3 == 3 wire bidirectional
86 * 4 == 4 wire bidirectional
87 * 6 == 6 wire unidirectional (or TLL)
88 */
89 u8 pins[3];
90};
91
92struct omap_lcd_config {
93 char panel_name[16];
94 char ctrl_name[16];
95};
96
Tony Lindgren9b6553c2006-04-02 17:46:30 +010097struct omap_fbmem_config {
98 u32 fb_sram_start;
99 u32 fb_sram_size;
100 u32 fb_sdram_start;
101 u32 fb_sdram_size;
102};
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/* Cover:
105 * high -> closed
106 * low -> open
107 * Connection:
108 * high -> connected
109 * low -> disconnected
110 */
111#define OMAP_GPIO_SWITCH_TYPE_COVER 0x0000
112#define OMAP_GPIO_SWITCH_TYPE_CONNECTION 0x0001
Tony Lindgrenaf973d22005-07-10 19:58:06 +0100113#define OMAP_GPIO_SWITCH_FLAG_INVERTED 0x0001
114#define OMAP_GPIO_SWITCH_FLAG_OUTPUT 0x0002
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115struct omap_gpio_switch_config {
116 char name[12];
117 u16 gpio;
118 int flags:4;
119 int type:4;
120 int key_code:24; /* Linux key code */
121};
122
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100123struct omap_uart_config {
124 /* Bit field of UARTs present; bit 0 --> UART1 */
125 unsigned int enabled_uarts;
126};
127
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129struct omap_flash_part_config {
130 char part_table[0];
131};
132
133struct omap_boot_reason_config {
134 char reason_str[12];
135};
136
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100137struct omap_version_config {
138 char component[12];
139 char version[12];
Tony Lindgrenaf973d22005-07-10 19:58:06 +0100140};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100142
143#include <asm-arm/arch-omap/board-nokia.h>
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145struct omap_board_config_entry {
146 u16 tag;
147 u16 len;
148 u8 data[0];
149};
150
151struct omap_board_config_kernel {
152 u16 tag;
153 const void *data;
154};
155
156extern const void *__omap_get_config(u16 tag, size_t len, int nr);
157
158#define omap_get_config(tag, type) \
159 ((const type *) __omap_get_config((tag), sizeof(type), 0))
160#define omap_get_nr_config(tag, type, nr) \
161 ((const type *) __omap_get_config((tag), sizeof(type), (nr)))
162
163extern const void *omap_get_var_config(u16 tag, size_t *len);
164
165extern struct omap_board_config_kernel *omap_board_config;
166extern int omap_board_config_size;
167
168#endif