aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-omap/include/plat/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/plat-omap/include/plat/board.h')
-rw-r--r--arch/arm/plat-omap/include/plat/board.h178
1 files changed, 178 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/include/plat/board.h b/arch/arm/plat-omap/include/plat/board.h
new file mode 100644
index 00000000000..abb17b604f8
--- /dev/null
+++ b/arch/arm/plat-omap/include/plat/board.h
@@ -0,0 +1,178 @@
1/*
2 * arch/arm/plat-omap/include/mach/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
13#include <linux/types.h>
14
15#include <plat/gpio-switch.h>
16
17/*
18 * OMAP35x EVM revision
19 * Run time detection of EVM revision is done by reading Ethernet
20 * PHY ID -
21 * GEN_1 = 0x01150000
22 * GEN_2 = 0x92200000
23 */
24enum {
25 OMAP3EVM_BOARD_GEN_1 = 0, /* EVM Rev between A - D */
26 OMAP3EVM_BOARD_GEN_2, /* EVM Rev >= Rev E */
27};
28
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
36
37#define OMAP_TAG_BOOT_REASON 0x4f80
38#define OMAP_TAG_FLASH_PART 0x4f81
39#define OMAP_TAG_VERSION_STR 0x4f82
40
41struct omap_clock_config {
42 /* 0 for 12 MHz, 1 for 13 MHz and 2 for 19.2 MHz */
43 u8 system_clock_type;
44};
45
46struct omap_serial_console_config {
47 u8 console_uart;
48 u32 console_speed;
49};
50
51struct omap_sti_console_config {
52 unsigned enable:1;
53 u8 channel;
54};
55
56struct omap_camera_sensor_config {
57 u16 reset_gpio;
58 int (*power_on)(void * data);
59 int (*power_off)(void * data);
60};
61
62struct 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"
70 */
71 unsigned register_host:1;
72 unsigned register_dev:1;
73 u8 otg; /* port number, 1-based: usb1 == 2 */
74
75 u8 hmc_mode;
76
77 /* implicitly true if otg: host supports remote wakeup? */
78 u8 rwc;
79
80 /* signaling pins used to talk to transceiver on usbN:
81 * 0 == usbN unused
82 * 2 == usb0-only, using internal transceiver
83 * 3 == 3 wire bidirectional
84 * 4 == 4 wire bidirectional
85 * 6 == 6 wire unidirectional (or TLL)
86 */
87 u8 pins[3];
88};
89
90struct omap_lcd_config {
91 char panel_name[16];
92 char ctrl_name[16];
93 s16 nreset_gpio;
94 u8 data_lines;
95};
96
97struct device;
98struct fb_info;
99struct omap_backlight_config {
100 int default_intensity;
101 int (*set_power)(struct device *dev, int state);
102 int (*check_fb)(struct fb_info *fb);
103};
104
105struct omap_fbmem_config {
106 u32 start;
107 u32 size;
108};
109
110struct omap_pwm_led_platform_data {
111 const char *name;
112 int intensity_timer;
113 int blink_timer;
114 void (*set_power)(struct omap_pwm_led_platform_data *self, int on_off);
115};
116
117/* See arch/arm/plat-omap/include/mach/gpio-switch.h for definitions */
118struct omap_gpio_switch_config {
119 char name[12];
120 u16 gpio;
121 int flags:4;
122 int type:4;
123 int key_code:24; /* Linux key code */
124};
125
126struct omap_uart_config {
127 /* Bit field of UARTs present; bit 0 --> UART1 */
128 unsigned int enabled_uarts;
129};
130
131
132struct omap_flash_part_config {
133 char part_table[0];
134};
135
136struct omap_boot_reason_config {
137 char reason_str[12];
138};
139
140struct omap_version_config {
141 char component[12];
142 char version[12];
143};
144
145struct 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
169/* for TI reference platforms sharing the same debug card */
170extern int debug_card_init(u32 addr, unsigned gpio);
171
172/* OMAP3EVM revision */
173#if defined(CONFIG_MACH_OMAP3EVM)
174u8 get_omap3_evm_rev(void);
175#else
176#define get_omap3_evm_rev() (-EINVAL)
177#endif
178#endif