]>
Commit | Line | Data |
---|---|---|
7e7c5e4c AZ |
1 | /* |
2 | * Nokia N-series internet tablets. | |
3 | * | |
4 | * Copyright (C) 2007 Nokia Corporation | |
5 | * Written by Andrzej Zaborowski <[email protected]> | |
6 | * | |
7 | * This program is free software; you can redistribute it and/or | |
8 | * modify it under the terms of the GNU General Public License as | |
9 | * published by the Free Software Foundation; either version 2 or | |
10 | * (at your option) version 3 of the License. | |
11 | * | |
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU General Public License for more details. | |
16 | * | |
fad6cb1a | 17 | * You should have received a copy of the GNU General Public License along |
8167ee88 | 18 | * with this program; if not, see <http://www.gnu.org/licenses/>. |
7e7c5e4c AZ |
19 | */ |
20 | ||
21 | #include "qemu-common.h" | |
9c17d615 | 22 | #include "sysemu/sysemu.h" |
0d09e41a | 23 | #include "hw/arm/omap.h" |
bd2be150 | 24 | #include "hw/arm/arm.h" |
83c9f4ca | 25 | #include "hw/irq.h" |
28ecbaee | 26 | #include "ui/console.h" |
83c9f4ca | 27 | #include "hw/boards.h" |
0d09e41a | 28 | #include "hw/i2c/i2c.h" |
bd2be150 | 29 | #include "hw/devices.h" |
0d09e41a | 30 | #include "hw/block/flash.h" |
83c9f4ca PB |
31 | #include "hw/hw.h" |
32 | #include "hw/bt.h" | |
33 | #include "hw/loader.h" | |
9c17d615 | 34 | #include "sysemu/blockdev.h" |
83c9f4ca | 35 | #include "hw/sysbus.h" |
022c62cb | 36 | #include "exec/address-spaces.h" |
7e7c5e4c AZ |
37 | |
38 | /* Nokia N8x0 support */ | |
39 | struct n800_s { | |
518ec134 | 40 | struct omap_mpu_state_s *mpu; |
7e7c5e4c AZ |
41 | |
42 | struct rfbi_chip_s blizzard; | |
e927bb00 AZ |
43 | struct { |
44 | void *opaque; | |
45 | uint32_t (*txrx)(void *opaque, uint32_t value, int len); | |
bc24a225 | 46 | uWireSlave *chip; |
e927bb00 | 47 | } ts; |
7e7c5e4c AZ |
48 | |
49 | int keymap[0x80]; | |
c4f05c8c | 50 | DeviceState *kbd; |
7e7c5e4c | 51 | |
bdc76462 | 52 | DeviceState *usb; |
7e7c5e4c AZ |
53 | void *retu; |
54 | void *tahvo; | |
500954e3 | 55 | DeviceState *nand; |
7e7c5e4c AZ |
56 | }; |
57 | ||
58 | /* GPIO pins */ | |
e927bb00 | 59 | #define N8X0_TUSB_ENABLE_GPIO 0 |
7e7c5e4c AZ |
60 | #define N800_MMC2_WP_GPIO 8 |
61 | #define N800_UNKNOWN_GPIO0 9 /* out */ | |
0941041e | 62 | #define N810_MMC2_VIOSD_GPIO 9 |
99570a40 | 63 | #define N810_HEADSET_AMP_GPIO 10 |
7e7c5e4c | 64 | #define N800_CAM_TURN_GPIO 12 |
e927bb00 | 65 | #define N810_GPS_RESET_GPIO 12 |
7e7c5e4c AZ |
66 | #define N800_BLIZZARD_POWERDOWN_GPIO 15 |
67 | #define N800_MMC1_WP_GPIO 23 | |
0941041e | 68 | #define N810_MMC2_VSD_GPIO 23 |
7e7c5e4c | 69 | #define N8X0_ONENAND_GPIO 26 |
e927bb00 | 70 | #define N810_BLIZZARD_RESET_GPIO 30 |
7e7c5e4c AZ |
71 | #define N800_UNKNOWN_GPIO2 53 /* out */ |
72 | #define N8X0_TUSB_INT_GPIO 58 | |
e927bb00 AZ |
73 | #define N8X0_BT_WKUP_GPIO 61 |
74 | #define N8X0_STI_GPIO 62 | |
7e7c5e4c | 75 | #define N8X0_CBUS_SEL_GPIO 64 |
e927bb00 AZ |
76 | #define N8X0_CBUS_DAT_GPIO 65 |
77 | #define N8X0_CBUS_CLK_GPIO 66 | |
78 | #define N8X0_WLAN_IRQ_GPIO 87 | |
79 | #define N8X0_BT_RESET_GPIO 92 | |
80 | #define N8X0_TEA5761_CS_GPIO 93 | |
7e7c5e4c | 81 | #define N800_UNKNOWN_GPIO 94 |
e927bb00 | 82 | #define N810_TSC_RESET_GPIO 94 |
7e7c5e4c | 83 | #define N800_CAM_ACT_GPIO 95 |
e927bb00 AZ |
84 | #define N810_GPS_WAKEUP_GPIO 95 |
85 | #define N8X0_MMC_CS_GPIO 96 | |
86 | #define N8X0_WLAN_PWR_GPIO 97 | |
7e7c5e4c | 87 | #define N8X0_BT_HOST_WKUP_GPIO 98 |
99570a40 | 88 | #define N810_SPEAKER_AMP_GPIO 101 |
7e7c5e4c AZ |
89 | #define N810_KB_LOCK_GPIO 102 |
90 | #define N800_TSC_TS_GPIO 103 | |
e927bb00 AZ |
91 | #define N810_TSC_TS_GPIO 106 |
92 | #define N8X0_HEADPHONE_GPIO 107 | |
7e7c5e4c AZ |
93 | #define N8X0_RETU_GPIO 108 |
94 | #define N800_TSC_KP_IRQ_GPIO 109 | |
95 | #define N810_KEYBOARD_GPIO 109 | |
96 | #define N800_BAT_COVER_GPIO 110 | |
97 | #define N810_SLIDE_GPIO 110 | |
98 | #define N8X0_TAHVO_GPIO 111 | |
99 | #define N800_UNKNOWN_GPIO4 112 /* out */ | |
e927bb00 | 100 | #define N810_SLEEPX_LED_GPIO 112 |
1d4e547b | 101 | #define N800_TSC_RESET_GPIO 118 /* ? */ |
99570a40 | 102 | #define N810_AIC33_RESET_GPIO 118 |
1d4e547b | 103 | #define N800_TSC_UNKNOWN_GPIO 119 /* out */ |
7e7c5e4c AZ |
104 | #define N8X0_TMP105_GPIO 125 |
105 | ||
106 | /* Config */ | |
c580d92b | 107 | #define BT_UART 0 |
7e7c5e4c AZ |
108 | #define XLDR_LL_UART 1 |
109 | ||
1d4e547b AZ |
110 | /* Addresses on the I2C bus 0 */ |
111 | #define N810_TLV320AIC33_ADDR 0x18 /* Audio CODEC */ | |
112 | #define N8X0_TCM825x_ADDR 0x29 /* Camera */ | |
113 | #define N810_LP5521_ADDR 0x32 /* LEDs */ | |
114 | #define N810_TSL2563_ADDR 0x3d /* Light sensor */ | |
115 | #define N810_LM8323_ADDR 0x45 /* Keyboard */ | |
116 | /* Addresses on the I2C bus 1 */ | |
117 | #define N8X0_TMP105_ADDR 0x48 /* Temperature sensor */ | |
118 | #define N8X0_MENELAUS_ADDR 0x72 /* Power management */ | |
7e7c5e4c AZ |
119 | |
120 | /* Chipselects on GPMC NOR interface */ | |
121 | #define N8X0_ONENAND_CS 0 | |
122 | #define N8X0_USB_ASYNC_CS 1 | |
123 | #define N8X0_USB_SYNC_CS 4 | |
124 | ||
c580d92b AZ |
125 | #define N8X0_BD_ADDR 0x00, 0x1a, 0x89, 0x9e, 0x3e, 0x81 |
126 | ||
7e7c5e4c AZ |
127 | static void n800_mmc_cs_cb(void *opaque, int line, int level) |
128 | { | |
129 | /* TODO: this seems to actually be connected to the menelaus, to | |
130 | * which also both MMC slots connect. */ | |
131 | omap_mmc_enable((struct omap_mmc_s *) opaque, !level); | |
7e7c5e4c AZ |
132 | } |
133 | ||
e927bb00 | 134 | static void n8x0_gpio_setup(struct n800_s *s) |
7e7c5e4c | 135 | { |
518ec134 AF |
136 | qemu_irq *mmc_cs = qemu_allocate_irqs(n800_mmc_cs_cb, s->mpu->mmc, 1); |
137 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_MMC_CS_GPIO, mmc_cs[0]); | |
7e7c5e4c | 138 | |
518ec134 | 139 | qemu_irq_lower(qdev_get_gpio_in(s->mpu->gpio, N800_BAT_COVER_GPIO)); |
7e7c5e4c AZ |
140 | } |
141 | ||
c580d92b AZ |
142 | #define MAEMO_CAL_HEADER(...) \ |
143 | 'C', 'o', 'n', 'F', 0x02, 0x00, 0x04, 0x00, \ | |
144 | __VA_ARGS__, \ | |
145 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | |
146 | ||
147 | static const uint8_t n8x0_cal_wlan_mac[] = { | |
148 | MAEMO_CAL_HEADER('w', 'l', 'a', 'n', '-', 'm', 'a', 'c') | |
149 | 0x1c, 0x00, 0x00, 0x00, 0x47, 0xd6, 0x69, 0xb3, | |
150 | 0x30, 0x08, 0xa0, 0x83, 0x00, 0x00, 0x00, 0x00, | |
151 | 0x00, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, | |
152 | 0x89, 0x00, 0x00, 0x00, 0x9e, 0x00, 0x00, 0x00, | |
153 | 0x5d, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00, | |
154 | }; | |
155 | ||
156 | static const uint8_t n8x0_cal_bt_id[] = { | |
157 | MAEMO_CAL_HEADER('b', 't', '-', 'i', 'd', 0, 0, 0) | |
158 | 0x0a, 0x00, 0x00, 0x00, 0xa3, 0x4b, 0xf6, 0x96, | |
159 | 0xa8, 0xeb, 0xb2, 0x41, 0x00, 0x00, 0x00, 0x00, | |
160 | N8X0_BD_ADDR, | |
161 | }; | |
162 | ||
7e7c5e4c AZ |
163 | static void n8x0_nand_setup(struct n800_s *s) |
164 | { | |
c580d92b | 165 | char *otp_region; |
af5a75f4 | 166 | DriveInfo *dinfo; |
c580d92b | 167 | |
500954e3 JR |
168 | s->nand = qdev_create(NULL, "onenand"); |
169 | qdev_prop_set_uint16(s->nand, "manufacturer_id", NAND_MFR_SAMSUNG); | |
5923ba42 | 170 | /* Either 0x40 or 0x48 are OK for the device ID */ |
500954e3 JR |
171 | qdev_prop_set_uint16(s->nand, "device_id", 0x48); |
172 | qdev_prop_set_uint16(s->nand, "version_id", 0); | |
173 | qdev_prop_set_int32(s->nand, "shift", 1); | |
174 | dinfo = drive_get(IF_MTD, 0, 0); | |
175 | if (dinfo && dinfo->bdrv) { | |
176 | qdev_prop_set_drive_nofail(s->nand, "drive", dinfo->bdrv); | |
177 | } | |
178 | qdev_init_nofail(s->nand); | |
1356b98d | 179 | sysbus_connect_irq(SYS_BUS_DEVICE(s->nand), 0, |
518ec134 AF |
180 | qdev_get_gpio_in(s->mpu->gpio, N8X0_ONENAND_GPIO)); |
181 | omap_gpmc_attach(s->mpu->gpmc, N8X0_ONENAND_CS, | |
1356b98d | 182 | sysbus_mmio_get_region(SYS_BUS_DEVICE(s->nand), 0)); |
c580d92b AZ |
183 | otp_region = onenand_raw_otp(s->nand); |
184 | ||
185 | memcpy(otp_region + 0x000, n8x0_cal_wlan_mac, sizeof(n8x0_cal_wlan_mac)); | |
186 | memcpy(otp_region + 0x800, n8x0_cal_bt_id, sizeof(n8x0_cal_bt_id)); | |
187 | /* XXX: in theory should also update the OOB for both pages */ | |
7e7c5e4c AZ |
188 | } |
189 | ||
c72ddb1e IM |
190 | static qemu_irq n8x0_system_powerdown; |
191 | ||
192 | static void n8x0_powerdown_req(Notifier *n, void *opaque) | |
193 | { | |
194 | qemu_irq_raise(n8x0_system_powerdown); | |
195 | } | |
196 | ||
197 | static Notifier n8x0_system_powerdown_notifier = { | |
198 | .notify = n8x0_powerdown_req | |
199 | }; | |
200 | ||
e927bb00 | 201 | static void n8x0_i2c_setup(struct n800_s *s) |
7e7c5e4c | 202 | { |
697454eb | 203 | DeviceState *dev; |
518ec134 | 204 | qemu_irq tmp_irq = qdev_get_gpio_in(s->mpu->gpio, N8X0_TMP105_GPIO); |
a5c82852 | 205 | I2CBus *i2c = omap_i2c_bus(s->mpu->i2c[0]); |
7e7c5e4c AZ |
206 | |
207 | /* Attach a menelaus PM chip */ | |
54e17933 | 208 | dev = i2c_create_slave(i2c, "twl92230", N8X0_MENELAUS_ADDR); |
0919ac78 | 209 | qdev_connect_gpio_out(dev, 3, |
518ec134 | 210 | qdev_get_gpio_in(s->mpu->ih[0], |
0919ac78 | 211 | OMAP_INT_24XX_SYS_NIRQ)); |
7e7c5e4c | 212 | |
c72ddb1e IM |
213 | n8x0_system_powerdown = qdev_get_gpio_in(dev, 3); |
214 | qemu_register_powerdown_notifier(&n8x0_system_powerdown_notifier); | |
dd4427a6 | 215 | |
7e7c5e4c | 216 | /* Attach a TMP105 PM chip (A0 wired to ground) */ |
54e17933 | 217 | dev = i2c_create_slave(i2c, "tmp105", N8X0_TMP105_ADDR); |
697454eb | 218 | qdev_connect_gpio_out(dev, 0, tmp_irq); |
7e7c5e4c AZ |
219 | } |
220 | ||
221 | /* Touchscreen and keypad controller */ | |
bc24a225 | 222 | static MouseTransformInfo n800_pointercal = { |
e927bb00 AZ |
223 | .x = 800, |
224 | .y = 480, | |
225 | .a = { 14560, -68, -3455208, -39, -9621, 35152972, 65536 }, | |
226 | }; | |
227 | ||
bc24a225 | 228 | static MouseTransformInfo n810_pointercal = { |
e927bb00 AZ |
229 | .x = 800, |
230 | .y = 480, | |
231 | .a = { 15041, 148, -4731056, 171, -10238, 35933380, 65536 }, | |
232 | }; | |
233 | ||
7e7c5e4c AZ |
234 | #define RETU_KEYCODE 61 /* F3 */ |
235 | ||
236 | static void n800_key_event(void *opaque, int keycode) | |
237 | { | |
238 | struct n800_s *s = (struct n800_s *) opaque; | |
239 | int code = s->keymap[keycode & 0x7f]; | |
240 | ||
241 | if (code == -1) { | |
fddbd80c | 242 | if ((keycode & 0x7f) == RETU_KEYCODE) { |
7e7c5e4c | 243 | retu_key_event(s->retu, !(keycode & 0x80)); |
fddbd80c | 244 | } |
7e7c5e4c AZ |
245 | return; |
246 | } | |
247 | ||
e927bb00 | 248 | tsc210x_key_event(s->ts.chip, code, !(keycode & 0x80)); |
7e7c5e4c AZ |
249 | } |
250 | ||
251 | static const int n800_keys[16] = { | |
252 | -1, | |
253 | 72, /* Up */ | |
254 | 63, /* Home (F5) */ | |
255 | -1, | |
256 | 75, /* Left */ | |
257 | 28, /* Enter */ | |
258 | 77, /* Right */ | |
259 | -1, | |
1d4e547b | 260 | 1, /* Cycle (ESC) */ |
7e7c5e4c AZ |
261 | 80, /* Down */ |
262 | 62, /* Menu (F4) */ | |
263 | -1, | |
264 | 66, /* Zoom- (F8) */ | |
1d4e547b | 265 | 64, /* FullScreen (F6) */ |
7e7c5e4c AZ |
266 | 65, /* Zoom+ (F7) */ |
267 | -1, | |
268 | }; | |
269 | ||
e927bb00 | 270 | static void n800_tsc_kbd_setup(struct n800_s *s) |
7e7c5e4c AZ |
271 | { |
272 | int i; | |
273 | ||
274 | /* XXX: are the three pins inverted inside the chip between the | |
275 | * tsc and the cpu (N4111)? */ | |
b9d38e95 | 276 | qemu_irq penirq = NULL; /* NC */ |
518ec134 AF |
277 | qemu_irq kbirq = qdev_get_gpio_in(s->mpu->gpio, N800_TSC_KP_IRQ_GPIO); |
278 | qemu_irq dav = qdev_get_gpio_in(s->mpu->gpio, N800_TSC_TS_GPIO); | |
7e7c5e4c | 279 | |
22d83b14 | 280 | s->ts.chip = tsc2301_init(penirq, kbirq, dav); |
e927bb00 AZ |
281 | s->ts.opaque = s->ts.chip->opaque; |
282 | s->ts.txrx = tsc210x_txrx; | |
7e7c5e4c | 283 | |
fddbd80c | 284 | for (i = 0; i < 0x80; i++) { |
7e7c5e4c | 285 | s->keymap[i] = -1; |
fddbd80c PB |
286 | } |
287 | for (i = 0; i < 0x10; i++) { | |
288 | if (n800_keys[i] >= 0) { | |
7e7c5e4c | 289 | s->keymap[n800_keys[i]] = i; |
fddbd80c PB |
290 | } |
291 | } | |
7e7c5e4c AZ |
292 | |
293 | qemu_add_kbd_event_handler(n800_key_event, s); | |
294 | ||
e927bb00 AZ |
295 | tsc210x_set_transform(s->ts.chip, &n800_pointercal); |
296 | } | |
297 | ||
298 | static void n810_tsc_setup(struct n800_s *s) | |
299 | { | |
518ec134 | 300 | qemu_irq pintdav = qdev_get_gpio_in(s->mpu->gpio, N810_TSC_TS_GPIO); |
e927bb00 AZ |
301 | |
302 | s->ts.opaque = tsc2005_init(pintdav); | |
303 | s->ts.txrx = tsc2005_txrx; | |
304 | ||
305 | tsc2005_set_transform(s->ts.opaque, &n810_pointercal); | |
7e7c5e4c AZ |
306 | } |
307 | ||
1d4e547b AZ |
308 | /* N810 Keyboard controller */ |
309 | static void n810_key_event(void *opaque, int keycode) | |
310 | { | |
311 | struct n800_s *s = (struct n800_s *) opaque; | |
312 | int code = s->keymap[keycode & 0x7f]; | |
313 | ||
314 | if (code == -1) { | |
fddbd80c | 315 | if ((keycode & 0x7f) == RETU_KEYCODE) { |
1d4e547b | 316 | retu_key_event(s->retu, !(keycode & 0x80)); |
fddbd80c | 317 | } |
1d4e547b AZ |
318 | return; |
319 | } | |
320 | ||
321 | lm832x_key_event(s->kbd, code, !(keycode & 0x80)); | |
322 | } | |
323 | ||
324 | #define M 0 | |
325 | ||
326 | static int n810_keys[0x80] = { | |
327 | [0x01] = 16, /* Q */ | |
328 | [0x02] = 37, /* K */ | |
329 | [0x03] = 24, /* O */ | |
330 | [0x04] = 25, /* P */ | |
331 | [0x05] = 14, /* Backspace */ | |
332 | [0x06] = 30, /* A */ | |
333 | [0x07] = 31, /* S */ | |
334 | [0x08] = 32, /* D */ | |
335 | [0x09] = 33, /* F */ | |
336 | [0x0a] = 34, /* G */ | |
337 | [0x0b] = 35, /* H */ | |
338 | [0x0c] = 36, /* J */ | |
339 | ||
340 | [0x11] = 17, /* W */ | |
341 | [0x12] = 62, /* Menu (F4) */ | |
342 | [0x13] = 38, /* L */ | |
343 | [0x14] = 40, /* ' (Apostrophe) */ | |
344 | [0x16] = 44, /* Z */ | |
345 | [0x17] = 45, /* X */ | |
346 | [0x18] = 46, /* C */ | |
347 | [0x19] = 47, /* V */ | |
348 | [0x1a] = 48, /* B */ | |
349 | [0x1b] = 49, /* N */ | |
350 | [0x1c] = 42, /* Shift (Left shift) */ | |
351 | [0x1f] = 65, /* Zoom+ (F7) */ | |
352 | ||
353 | [0x21] = 18, /* E */ | |
354 | [0x22] = 39, /* ; (Semicolon) */ | |
355 | [0x23] = 12, /* - (Minus) */ | |
356 | [0x24] = 13, /* = (Equal) */ | |
357 | [0x2b] = 56, /* Fn (Left Alt) */ | |
358 | [0x2c] = 50, /* M */ | |
359 | [0x2f] = 66, /* Zoom- (F8) */ | |
360 | ||
361 | [0x31] = 19, /* R */ | |
362 | [0x32] = 29 | M, /* Right Ctrl */ | |
363 | [0x34] = 57, /* Space */ | |
364 | [0x35] = 51, /* , (Comma) */ | |
365 | [0x37] = 72 | M, /* Up */ | |
366 | [0x3c] = 82 | M, /* Compose (Insert) */ | |
367 | [0x3f] = 64, /* FullScreen (F6) */ | |
368 | ||
369 | [0x41] = 20, /* T */ | |
370 | [0x44] = 52, /* . (Dot) */ | |
371 | [0x46] = 77 | M, /* Right */ | |
372 | [0x4f] = 63, /* Home (F5) */ | |
373 | [0x51] = 21, /* Y */ | |
374 | [0x53] = 80 | M, /* Down */ | |
375 | [0x55] = 28, /* Enter */ | |
376 | [0x5f] = 1, /* Cycle (ESC) */ | |
377 | ||
378 | [0x61] = 22, /* U */ | |
379 | [0x64] = 75 | M, /* Left */ | |
380 | ||
381 | [0x71] = 23, /* I */ | |
382 | #if 0 | |
383 | [0x75] = 28 | M, /* KP Enter (KP Enter) */ | |
384 | #else | |
385 | [0x75] = 15, /* KP Enter (Tab) */ | |
386 | #endif | |
387 | }; | |
388 | ||
389 | #undef M | |
390 | ||
391 | static void n810_kbd_setup(struct n800_s *s) | |
392 | { | |
518ec134 | 393 | qemu_irq kbd_irq = qdev_get_gpio_in(s->mpu->gpio, N810_KEYBOARD_GPIO); |
1d4e547b AZ |
394 | int i; |
395 | ||
fddbd80c | 396 | for (i = 0; i < 0x80; i++) { |
1d4e547b | 397 | s->keymap[i] = -1; |
fddbd80c PB |
398 | } |
399 | for (i = 0; i < 0x80; i++) { | |
400 | if (n810_keys[i] > 0) { | |
1d4e547b | 401 | s->keymap[n810_keys[i]] = i; |
fddbd80c PB |
402 | } |
403 | } | |
1d4e547b AZ |
404 | |
405 | qemu_add_kbd_event_handler(n810_key_event, s); | |
406 | ||
407 | /* Attach the LM8322 keyboard to the I2C bus, | |
408 | * should happen in n8x0_i2c_setup and s->kbd be initialised here. */ | |
518ec134 | 409 | s->kbd = i2c_create_slave(omap_i2c_bus(s->mpu->i2c[0]), |
54e17933 | 410 | "lm8323", N810_LM8323_ADDR); |
c4f05c8c | 411 | qdev_connect_gpio_out(s->kbd, 0, kbd_irq); |
1d4e547b AZ |
412 | } |
413 | ||
7e7c5e4c AZ |
414 | /* LCD MIPI DBI-C controller (URAL) */ |
415 | struct mipid_s { | |
416 | int resp[4]; | |
417 | int param[4]; | |
418 | int p; | |
419 | int pm; | |
420 | int cmd; | |
421 | ||
422 | int sleep; | |
423 | int booster; | |
424 | int te; | |
425 | int selfcheck; | |
426 | int partial; | |
427 | int normal; | |
428 | int vscr; | |
429 | int invert; | |
430 | int onoff; | |
431 | int gamma; | |
432 | uint32_t id; | |
433 | }; | |
434 | ||
435 | static void mipid_reset(struct mipid_s *s) | |
436 | { | |
7e7c5e4c AZ |
437 | s->pm = 0; |
438 | s->cmd = 0; | |
439 | ||
440 | s->sleep = 1; | |
441 | s->booster = 0; | |
442 | s->selfcheck = | |
443 | (1 << 7) | /* Register loading OK. */ | |
444 | (1 << 5) | /* The chip is attached. */ | |
445 | (1 << 4); /* Display glass still in one piece. */ | |
446 | s->te = 0; | |
447 | s->partial = 0; | |
448 | s->normal = 1; | |
449 | s->vscr = 0; | |
450 | s->invert = 0; | |
451 | s->onoff = 1; | |
452 | s->gamma = 0; | |
453 | } | |
454 | ||
e927bb00 | 455 | static uint32_t mipid_txrx(void *opaque, uint32_t cmd, int len) |
7e7c5e4c AZ |
456 | { |
457 | struct mipid_s *s = (struct mipid_s *) opaque; | |
458 | uint8_t ret; | |
459 | ||
fddbd80c | 460 | if (len > 9) { |
2ac71179 | 461 | hw_error("%s: FIXME: bad SPI word width %i\n", __FUNCTION__, len); |
fddbd80c | 462 | } |
e927bb00 | 463 | |
fddbd80c | 464 | if (s->p >= ARRAY_SIZE(s->resp)) { |
7e7c5e4c | 465 | ret = 0; |
fddbd80c PB |
466 | } else { |
467 | ret = s->resp[s->p++]; | |
468 | } | |
469 | if (s->pm-- > 0) { | |
7e7c5e4c | 470 | s->param[s->pm] = cmd; |
fddbd80c | 471 | } else { |
7e7c5e4c | 472 | s->cmd = cmd; |
fddbd80c | 473 | } |
7e7c5e4c AZ |
474 | |
475 | switch (s->cmd) { | |
476 | case 0x00: /* NOP */ | |
477 | break; | |
478 | ||
479 | case 0x01: /* SWRESET */ | |
480 | mipid_reset(s); | |
481 | break; | |
482 | ||
483 | case 0x02: /* BSTROFF */ | |
484 | s->booster = 0; | |
485 | break; | |
486 | case 0x03: /* BSTRON */ | |
487 | s->booster = 1; | |
488 | break; | |
489 | ||
490 | case 0x04: /* RDDID */ | |
491 | s->p = 0; | |
492 | s->resp[0] = (s->id >> 16) & 0xff; | |
493 | s->resp[1] = (s->id >> 8) & 0xff; | |
494 | s->resp[2] = (s->id >> 0) & 0xff; | |
495 | break; | |
496 | ||
497 | case 0x06: /* RD_RED */ | |
498 | case 0x07: /* RD_GREEN */ | |
499 | /* XXX the bootloader sometimes issues RD_BLUE meaning RDDID so | |
500 | * for the bootloader one needs to change this. */ | |
501 | case 0x08: /* RD_BLUE */ | |
502 | s->p = 0; | |
503 | /* TODO: return first pixel components */ | |
504 | s->resp[0] = 0x01; | |
505 | break; | |
506 | ||
507 | case 0x09: /* RDDST */ | |
508 | s->p = 0; | |
509 | s->resp[0] = s->booster << 7; | |
510 | s->resp[1] = (5 << 4) | (s->partial << 2) | | |
511 | (s->sleep << 1) | s->normal; | |
512 | s->resp[2] = (s->vscr << 7) | (s->invert << 5) | | |
513 | (s->onoff << 2) | (s->te << 1) | (s->gamma >> 2); | |
514 | s->resp[3] = s->gamma << 6; | |
515 | break; | |
516 | ||
517 | case 0x0a: /* RDDPM */ | |
518 | s->p = 0; | |
519 | s->resp[0] = (s->onoff << 2) | (s->normal << 3) | (s->sleep << 4) | | |
520 | (s->partial << 5) | (s->sleep << 6) | (s->booster << 7); | |
521 | break; | |
522 | case 0x0b: /* RDDMADCTR */ | |
523 | s->p = 0; | |
524 | s->resp[0] = 0; | |
525 | break; | |
526 | case 0x0c: /* RDDCOLMOD */ | |
527 | s->p = 0; | |
528 | s->resp[0] = 5; /* 65K colours */ | |
529 | break; | |
530 | case 0x0d: /* RDDIM */ | |
531 | s->p = 0; | |
532 | s->resp[0] = (s->invert << 5) | (s->vscr << 7) | s->gamma; | |
533 | break; | |
534 | case 0x0e: /* RDDSM */ | |
535 | s->p = 0; | |
536 | s->resp[0] = s->te << 7; | |
537 | break; | |
538 | case 0x0f: /* RDDSDR */ | |
539 | s->p = 0; | |
540 | s->resp[0] = s->selfcheck; | |
541 | break; | |
542 | ||
543 | case 0x10: /* SLPIN */ | |
544 | s->sleep = 1; | |
545 | break; | |
546 | case 0x11: /* SLPOUT */ | |
547 | s->sleep = 0; | |
548 | s->selfcheck ^= 1 << 6; /* POFF self-diagnosis Ok */ | |
549 | break; | |
550 | ||
551 | case 0x12: /* PTLON */ | |
552 | s->partial = 1; | |
553 | s->normal = 0; | |
554 | s->vscr = 0; | |
555 | break; | |
556 | case 0x13: /* NORON */ | |
557 | s->partial = 0; | |
558 | s->normal = 1; | |
559 | s->vscr = 0; | |
560 | break; | |
561 | ||
562 | case 0x20: /* INVOFF */ | |
563 | s->invert = 0; | |
564 | break; | |
565 | case 0x21: /* INVON */ | |
566 | s->invert = 1; | |
567 | break; | |
568 | ||
569 | case 0x22: /* APOFF */ | |
570 | case 0x23: /* APON */ | |
571 | goto bad_cmd; | |
572 | ||
573 | case 0x25: /* WRCNTR */ | |
fddbd80c | 574 | if (s->pm < 0) { |
7e7c5e4c | 575 | s->pm = 1; |
fddbd80c | 576 | } |
7e7c5e4c AZ |
577 | goto bad_cmd; |
578 | ||
579 | case 0x26: /* GAMSET */ | |
fddbd80c | 580 | if (!s->pm) { |
7e7c5e4c | 581 | s->gamma = ffs(s->param[0] & 0xf) - 1; |
fddbd80c | 582 | } else if (s->pm < 0) { |
7e7c5e4c | 583 | s->pm = 1; |
fddbd80c | 584 | } |
7e7c5e4c AZ |
585 | break; |
586 | ||
587 | case 0x28: /* DISPOFF */ | |
588 | s->onoff = 0; | |
7e7c5e4c AZ |
589 | break; |
590 | case 0x29: /* DISPON */ | |
591 | s->onoff = 1; | |
7e7c5e4c AZ |
592 | break; |
593 | ||
594 | case 0x2a: /* CASET */ | |
595 | case 0x2b: /* RASET */ | |
596 | case 0x2c: /* RAMWR */ | |
597 | case 0x2d: /* RGBSET */ | |
598 | case 0x2e: /* RAMRD */ | |
599 | case 0x30: /* PTLAR */ | |
600 | case 0x33: /* SCRLAR */ | |
601 | goto bad_cmd; | |
602 | ||
603 | case 0x34: /* TEOFF */ | |
604 | s->te = 0; | |
605 | break; | |
606 | case 0x35: /* TEON */ | |
fddbd80c | 607 | if (!s->pm) { |
7e7c5e4c | 608 | s->te = 1; |
fddbd80c | 609 | } else if (s->pm < 0) { |
7e7c5e4c | 610 | s->pm = 1; |
fddbd80c | 611 | } |
7e7c5e4c AZ |
612 | break; |
613 | ||
614 | case 0x36: /* MADCTR */ | |
615 | goto bad_cmd; | |
616 | ||
617 | case 0x37: /* VSCSAD */ | |
618 | s->partial = 0; | |
619 | s->normal = 0; | |
620 | s->vscr = 1; | |
621 | break; | |
622 | ||
623 | case 0x38: /* IDMOFF */ | |
624 | case 0x39: /* IDMON */ | |
625 | case 0x3a: /* COLMOD */ | |
626 | goto bad_cmd; | |
627 | ||
628 | case 0xb0: /* CLKINT / DISCTL */ | |
629 | case 0xb1: /* CLKEXT */ | |
fddbd80c | 630 | if (s->pm < 0) { |
7e7c5e4c | 631 | s->pm = 2; |
fddbd80c | 632 | } |
7e7c5e4c AZ |
633 | break; |
634 | ||
635 | case 0xb4: /* FRMSEL */ | |
636 | break; | |
637 | ||
638 | case 0xb5: /* FRM8SEL */ | |
639 | case 0xb6: /* TMPRNG / INIESC */ | |
640 | case 0xb7: /* TMPHIS / NOP2 */ | |
641 | case 0xb8: /* TMPREAD / MADCTL */ | |
642 | case 0xba: /* DISTCTR */ | |
643 | case 0xbb: /* EPVOL */ | |
644 | goto bad_cmd; | |
645 | ||
646 | case 0xbd: /* Unknown */ | |
647 | s->p = 0; | |
648 | s->resp[0] = 0; | |
649 | s->resp[1] = 1; | |
650 | break; | |
651 | ||
652 | case 0xc2: /* IFMOD */ | |
fddbd80c | 653 | if (s->pm < 0) { |
7e7c5e4c | 654 | s->pm = 2; |
fddbd80c | 655 | } |
7e7c5e4c AZ |
656 | break; |
657 | ||
658 | case 0xc6: /* PWRCTL */ | |
659 | case 0xc7: /* PPWRCTL */ | |
660 | case 0xd0: /* EPWROUT */ | |
661 | case 0xd1: /* EPWRIN */ | |
662 | case 0xd4: /* RDEV */ | |
663 | case 0xd5: /* RDRR */ | |
664 | goto bad_cmd; | |
665 | ||
666 | case 0xda: /* RDID1 */ | |
667 | s->p = 0; | |
668 | s->resp[0] = (s->id >> 16) & 0xff; | |
669 | break; | |
670 | case 0xdb: /* RDID2 */ | |
671 | s->p = 0; | |
672 | s->resp[0] = (s->id >> 8) & 0xff; | |
673 | break; | |
674 | case 0xdc: /* RDID3 */ | |
675 | s->p = 0; | |
676 | s->resp[0] = (s->id >> 0) & 0xff; | |
677 | break; | |
678 | ||
679 | default: | |
680 | bad_cmd: | |
591f73f6 PM |
681 | qemu_log_mask(LOG_GUEST_ERROR, |
682 | "%s: unknown command %02x\n", __func__, s->cmd); | |
7e7c5e4c AZ |
683 | break; |
684 | } | |
685 | ||
686 | return ret; | |
687 | } | |
688 | ||
689 | static void *mipid_init(void) | |
690 | { | |
7267c094 | 691 | struct mipid_s *s = (struct mipid_s *) g_malloc0(sizeof(*s)); |
7e7c5e4c AZ |
692 | |
693 | s->id = 0x838f03; | |
694 | mipid_reset(s); | |
695 | ||
696 | return s; | |
697 | } | |
698 | ||
e927bb00 | 699 | static void n8x0_spi_setup(struct n800_s *s) |
7e7c5e4c | 700 | { |
e927bb00 | 701 | void *tsc = s->ts.opaque; |
7e7c5e4c AZ |
702 | void *mipid = mipid_init(); |
703 | ||
518ec134 AF |
704 | omap_mcspi_attach(s->mpu->mcspi[0], s->ts.txrx, tsc, 0); |
705 | omap_mcspi_attach(s->mpu->mcspi[0], mipid_txrx, mipid, 1); | |
7e7c5e4c AZ |
706 | } |
707 | ||
708 | /* This task is normally performed by the bootloader. If we're loading | |
709 | * a kernel directly, we need to enable the Blizzard ourselves. */ | |
710 | static void n800_dss_init(struct rfbi_chip_s *chip) | |
711 | { | |
712 | uint8_t *fb_blank; | |
713 | ||
714 | chip->write(chip->opaque, 0, 0x2a); /* LCD Width register */ | |
715 | chip->write(chip->opaque, 1, 0x64); | |
716 | chip->write(chip->opaque, 0, 0x2c); /* LCD HNDP register */ | |
717 | chip->write(chip->opaque, 1, 0x1e); | |
718 | chip->write(chip->opaque, 0, 0x2e); /* LCD Height 0 register */ | |
719 | chip->write(chip->opaque, 1, 0xe0); | |
720 | chip->write(chip->opaque, 0, 0x30); /* LCD Height 1 register */ | |
721 | chip->write(chip->opaque, 1, 0x01); | |
722 | chip->write(chip->opaque, 0, 0x32); /* LCD VNDP register */ | |
723 | chip->write(chip->opaque, 1, 0x06); | |
724 | chip->write(chip->opaque, 0, 0x68); /* Display Mode register */ | |
725 | chip->write(chip->opaque, 1, 1); /* Enable bit */ | |
726 | ||
727 | chip->write(chip->opaque, 0, 0x6c); | |
728 | chip->write(chip->opaque, 1, 0x00); /* Input X Start Position */ | |
729 | chip->write(chip->opaque, 1, 0x00); /* Input X Start Position */ | |
730 | chip->write(chip->opaque, 1, 0x00); /* Input Y Start Position */ | |
731 | chip->write(chip->opaque, 1, 0x00); /* Input Y Start Position */ | |
732 | chip->write(chip->opaque, 1, 0x1f); /* Input X End Position */ | |
733 | chip->write(chip->opaque, 1, 0x03); /* Input X End Position */ | |
734 | chip->write(chip->opaque, 1, 0xdf); /* Input Y End Position */ | |
735 | chip->write(chip->opaque, 1, 0x01); /* Input Y End Position */ | |
736 | chip->write(chip->opaque, 1, 0x00); /* Output X Start Position */ | |
737 | chip->write(chip->opaque, 1, 0x00); /* Output X Start Position */ | |
738 | chip->write(chip->opaque, 1, 0x00); /* Output Y Start Position */ | |
739 | chip->write(chip->opaque, 1, 0x00); /* Output Y Start Position */ | |
740 | chip->write(chip->opaque, 1, 0x1f); /* Output X End Position */ | |
741 | chip->write(chip->opaque, 1, 0x03); /* Output X End Position */ | |
742 | chip->write(chip->opaque, 1, 0xdf); /* Output Y End Position */ | |
743 | chip->write(chip->opaque, 1, 0x01); /* Output Y End Position */ | |
744 | chip->write(chip->opaque, 1, 0x01); /* Input Data Format */ | |
745 | chip->write(chip->opaque, 1, 0x01); /* Data Source Select */ | |
746 | ||
7267c094 | 747 | fb_blank = memset(g_malloc(800 * 480 * 2), 0xff, 800 * 480 * 2); |
7e7c5e4c AZ |
748 | /* Display Memory Data Port */ |
749 | chip->block(chip->opaque, 1, fb_blank, 800 * 480 * 2, 800); | |
7267c094 | 750 | g_free(fb_blank); |
7e7c5e4c AZ |
751 | } |
752 | ||
3023f332 | 753 | static void n8x0_dss_setup(struct n800_s *s) |
7e7c5e4c | 754 | { |
b9d38e95 | 755 | s->blizzard.opaque = s1d13745_init(NULL); |
7e7c5e4c AZ |
756 | s->blizzard.block = s1d13745_write_block; |
757 | s->blizzard.write = s1d13745_write; | |
758 | s->blizzard.read = s1d13745_read; | |
759 | ||
518ec134 | 760 | omap_rfbi_attach(s->mpu->dss, 0, &s->blizzard); |
7e7c5e4c AZ |
761 | } |
762 | ||
e927bb00 | 763 | static void n8x0_cbus_setup(struct n800_s *s) |
7e7c5e4c | 764 | { |
518ec134 AF |
765 | qemu_irq dat_out = qdev_get_gpio_in(s->mpu->gpio, N8X0_CBUS_DAT_GPIO); |
766 | qemu_irq retu_irq = qdev_get_gpio_in(s->mpu->gpio, N8X0_RETU_GPIO); | |
767 | qemu_irq tahvo_irq = qdev_get_gpio_in(s->mpu->gpio, N8X0_TAHVO_GPIO); | |
7e7c5e4c | 768 | |
bc24a225 | 769 | CBus *cbus = cbus_init(dat_out); |
7e7c5e4c | 770 | |
518ec134 AF |
771 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_CBUS_CLK_GPIO, cbus->clk); |
772 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_CBUS_DAT_GPIO, cbus->dat); | |
773 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_CBUS_SEL_GPIO, cbus->sel); | |
7e7c5e4c AZ |
774 | |
775 | cbus_attach(cbus, s->retu = retu_init(retu_irq, 1)); | |
776 | cbus_attach(cbus, s->tahvo = tahvo_init(tahvo_irq, 1)); | |
777 | } | |
778 | ||
58a26b47 AZ |
779 | static void n8x0_uart_setup(struct n800_s *s) |
780 | { | |
781 | CharDriverState *radio = uart_hci_init( | |
518ec134 | 782 | qdev_get_gpio_in(s->mpu->gpio, N8X0_BT_HOST_WKUP_GPIO)); |
58a26b47 | 783 | |
518ec134 | 784 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_BT_RESET_GPIO, |
58a26b47 | 785 | csrhci_pins_get(radio)[csrhci_pin_reset]); |
518ec134 | 786 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_BT_WKUP_GPIO, |
58a26b47 AZ |
787 | csrhci_pins_get(radio)[csrhci_pin_wakeup]); |
788 | ||
518ec134 | 789 | omap_uart_attach(s->mpu->uart[BT_UART], radio); |
58a26b47 AZ |
790 | } |
791 | ||
e927bb00 | 792 | static void n8x0_usb_setup(struct n800_s *s) |
942ac052 | 793 | { |
bdc76462 PM |
794 | SysBusDevice *dev; |
795 | s->usb = qdev_create(NULL, "tusb6010"); | |
1356b98d | 796 | dev = SYS_BUS_DEVICE(s->usb); |
bdc76462 PM |
797 | qdev_init_nofail(s->usb); |
798 | sysbus_connect_irq(dev, 0, | |
518ec134 | 799 | qdev_get_gpio_in(s->mpu->gpio, N8X0_TUSB_INT_GPIO)); |
942ac052 | 800 | /* Using the NOR interface */ |
518ec134 | 801 | omap_gpmc_attach(s->mpu->gpmc, N8X0_USB_ASYNC_CS, |
bdc76462 | 802 | sysbus_mmio_get_region(dev, 0)); |
518ec134 | 803 | omap_gpmc_attach(s->mpu->gpmc, N8X0_USB_SYNC_CS, |
bdc76462 | 804 | sysbus_mmio_get_region(dev, 1)); |
518ec134 | 805 | qdev_connect_gpio_out(s->mpu->gpio, N8X0_TUSB_ENABLE_GPIO, |
bdc76462 | 806 | qdev_get_gpio_in(s->usb, 0)); /* tusb_pwr */ |
942ac052 AZ |
807 | } |
808 | ||
d238db7f AZ |
809 | /* Setup done before the main bootloader starts by some early setup code |
810 | * - used when we want to run the main bootloader in emulation. This | |
811 | * isn't documented. */ | |
812 | static uint32_t n800_pinout[104] = { | |
813 | 0x080f00d8, 0x00d40808, 0x03080808, 0x080800d0, | |
814 | 0x00dc0808, 0x0b0f0f00, 0x080800b4, 0x00c00808, | |
815 | 0x08080808, 0x180800c4, 0x00b80000, 0x08080808, | |
816 | 0x080800bc, 0x00cc0808, 0x08081818, 0x18180128, | |
817 | 0x01241800, 0x18181818, 0x000000f0, 0x01300000, | |
818 | 0x00001b0b, 0x1b0f0138, 0x00e0181b, 0x1b031b0b, | |
819 | 0x180f0078, 0x00740018, 0x0f0f0f1a, 0x00000080, | |
820 | 0x007c0000, 0x00000000, 0x00000088, 0x00840000, | |
821 | 0x00000000, 0x00000094, 0x00980300, 0x0f180003, | |
822 | 0x0000008c, 0x00900f0f, 0x0f0f1b00, 0x0f00009c, | |
823 | 0x01140000, 0x1b1b0f18, 0x0818013c, 0x01400008, | |
824 | 0x00001818, 0x000b0110, 0x010c1800, 0x0b030b0f, | |
825 | 0x181800f4, 0x00f81818, 0x00000018, 0x000000fc, | |
826 | 0x00401808, 0x00000000, 0x0f1b0030, 0x003c0008, | |
827 | 0x00000000, 0x00000038, 0x00340000, 0x00000000, | |
828 | 0x1a080070, 0x00641a1a, 0x08080808, 0x08080060, | |
829 | 0x005c0808, 0x08080808, 0x08080058, 0x00540808, | |
830 | 0x08080808, 0x0808006c, 0x00680808, 0x08080808, | |
831 | 0x000000a8, 0x00b00000, 0x08080808, 0x000000a0, | |
832 | 0x00a40000, 0x00000000, 0x08ff0050, 0x004c0808, | |
833 | 0xffffffff, 0xffff0048, 0x0044ffff, 0xffffffff, | |
834 | 0x000000ac, 0x01040800, 0x08080b0f, 0x18180100, | |
835 | 0x01081818, 0x0b0b1808, 0x1a0300e4, 0x012c0b1a, | |
836 | 0x02020018, 0x0b000134, 0x011c0800, 0x0b1b1b00, | |
837 | 0x0f0000c8, 0x00ec181b, 0x000f0f02, 0x00180118, | |
838 | 0x01200000, 0x0f0b1b1b, 0x0f0200e8, 0x0000020b, | |
839 | }; | |
840 | ||
841 | static void n800_setup_nolo_tags(void *sram_base) | |
842 | { | |
843 | int i; | |
844 | uint32_t *p = sram_base + 0x8000; | |
845 | uint32_t *v = sram_base + 0xa000; | |
846 | ||
847 | memset(p, 0, 0x3000); | |
848 | ||
849 | strcpy((void *) (p + 0), "QEMU N800"); | |
850 | ||
851 | strcpy((void *) (p + 8), "F5"); | |
852 | ||
0983979b | 853 | stl_p(p + 10, 0x04f70000); |
d238db7f AZ |
854 | strcpy((void *) (p + 9), "RX-34"); |
855 | ||
856 | /* RAM size in MB? */ | |
0983979b | 857 | stl_p(p + 12, 0x80); |
d238db7f AZ |
858 | |
859 | /* Pointer to the list of tags */ | |
0983979b | 860 | stl_p(p + 13, OMAP2_SRAM_BASE + 0x9000); |
d238db7f AZ |
861 | |
862 | /* The NOLO tags start here */ | |
863 | p = sram_base + 0x9000; | |
864 | #define ADD_TAG(tag, len) \ | |
0983979b PB |
865 | stw_p((uint16_t *) p + 0, tag); \ |
866 | stw_p((uint16_t *) p + 1, len); p++; \ | |
867 | stl_p(p++, OMAP2_SRAM_BASE | (((void *) v - sram_base) & 0xffff)); | |
d238db7f AZ |
868 | |
869 | /* OMAP STI console? Pin out settings? */ | |
870 | ADD_TAG(0x6e01, 414); | |
fddbd80c | 871 | for (i = 0; i < ARRAY_SIZE(n800_pinout); i++) { |
0983979b | 872 | stl_p(v++, n800_pinout[i]); |
fddbd80c | 873 | } |
d238db7f AZ |
874 | |
875 | /* Kernel memsize? */ | |
876 | ADD_TAG(0x6e05, 1); | |
0983979b | 877 | stl_p(v++, 2); |
d238db7f AZ |
878 | |
879 | /* NOLO serial console */ | |
880 | ADD_TAG(0x6e02, 4); | |
0983979b | 881 | stl_p(v++, XLDR_LL_UART); /* UART number (1 - 3) */ |
d238db7f AZ |
882 | |
883 | #if 0 | |
884 | /* CBUS settings (Retu/AVilma) */ | |
885 | ADD_TAG(0x6e03, 6); | |
0983979b PB |
886 | stw_p((uint16_t *) v + 0, 65); /* CBUS GPIO0 */ |
887 | stw_p((uint16_t *) v + 1, 66); /* CBUS GPIO1 */ | |
888 | stw_p((uint16_t *) v + 2, 64); /* CBUS GPIO2 */ | |
d238db7f AZ |
889 | v += 2; |
890 | #endif | |
891 | ||
892 | /* Nokia ASIC BB5 (Retu/Tahvo) */ | |
893 | ADD_TAG(0x6e0a, 4); | |
0983979b PB |
894 | stw_p((uint16_t *) v + 0, 111); /* "Retu" interrupt GPIO */ |
895 | stw_p((uint16_t *) v + 1, 108); /* "Tahvo" interrupt GPIO */ | |
fddbd80c | 896 | v++; |
d238db7f AZ |
897 | |
898 | /* LCD console? */ | |
899 | ADD_TAG(0x6e04, 4); | |
0983979b PB |
900 | stw_p((uint16_t *) v + 0, 30); /* ??? */ |
901 | stw_p((uint16_t *) v + 1, 24); /* ??? */ | |
fddbd80c | 902 | v++; |
d238db7f AZ |
903 | |
904 | #if 0 | |
905 | /* LCD settings */ | |
906 | ADD_TAG(0x6e06, 2); | |
0983979b | 907 | stw_p((uint16_t *) (v++), 15); /* ??? */ |
d238db7f AZ |
908 | #endif |
909 | ||
910 | /* I^2C (Menelaus) */ | |
911 | ADD_TAG(0x6e07, 4); | |
0983979b | 912 | stl_p(v++, 0x00720000); /* ??? */ |
d238db7f AZ |
913 | |
914 | /* Unknown */ | |
915 | ADD_TAG(0x6e0b, 6); | |
0983979b PB |
916 | stw_p((uint16_t *) v + 0, 94); /* ??? */ |
917 | stw_p((uint16_t *) v + 1, 23); /* ??? */ | |
918 | stw_p((uint16_t *) v + 2, 0); /* ??? */ | |
d238db7f AZ |
919 | v += 2; |
920 | ||
921 | /* OMAP gpio switch info */ | |
922 | ADD_TAG(0x6e0c, 80); | |
923 | strcpy((void *) v, "bat_cover"); v += 3; | |
0983979b PB |
924 | stw_p((uint16_t *) v + 0, 110); /* GPIO num ??? */ |
925 | stw_p((uint16_t *) v + 1, 1); /* GPIO num ??? */ | |
d238db7f AZ |
926 | v += 2; |
927 | strcpy((void *) v, "cam_act"); v += 3; | |
0983979b PB |
928 | stw_p((uint16_t *) v + 0, 95); /* GPIO num ??? */ |
929 | stw_p((uint16_t *) v + 1, 32); /* GPIO num ??? */ | |
d238db7f AZ |
930 | v += 2; |
931 | strcpy((void *) v, "cam_turn"); v += 3; | |
0983979b PB |
932 | stw_p((uint16_t *) v + 0, 12); /* GPIO num ??? */ |
933 | stw_p((uint16_t *) v + 1, 33); /* GPIO num ??? */ | |
d238db7f AZ |
934 | v += 2; |
935 | strcpy((void *) v, "headphone"); v += 3; | |
0983979b PB |
936 | stw_p((uint16_t *) v + 0, 107); /* GPIO num ??? */ |
937 | stw_p((uint16_t *) v + 1, 17); /* GPIO num ??? */ | |
d238db7f AZ |
938 | v += 2; |
939 | ||
940 | /* Bluetooth */ | |
941 | ADD_TAG(0x6e0e, 12); | |
0983979b PB |
942 | stl_p(v++, 0x5c623d01); /* ??? */ |
943 | stl_p(v++, 0x00000201); /* ??? */ | |
944 | stl_p(v++, 0x00000000); /* ??? */ | |
d238db7f AZ |
945 | |
946 | /* CX3110x WLAN settings */ | |
947 | ADD_TAG(0x6e0f, 8); | |
0983979b PB |
948 | stl_p(v++, 0x00610025); /* ??? */ |
949 | stl_p(v++, 0xffff0057); /* ??? */ | |
d238db7f AZ |
950 | |
951 | /* MMC host settings */ | |
952 | ADD_TAG(0x6e10, 12); | |
0983979b PB |
953 | stl_p(v++, 0xffff000f); /* ??? */ |
954 | stl_p(v++, 0xffffffff); /* ??? */ | |
955 | stl_p(v++, 0x00000060); /* ??? */ | |
d238db7f AZ |
956 | |
957 | /* OneNAND chip select */ | |
958 | ADD_TAG(0x6e11, 10); | |
0983979b PB |
959 | stl_p(v++, 0x00000401); /* ??? */ |
960 | stl_p(v++, 0x0002003a); /* ??? */ | |
961 | stl_p(v++, 0x00000002); /* ??? */ | |
d238db7f AZ |
962 | |
963 | /* TEA5761 sensor settings */ | |
964 | ADD_TAG(0x6e12, 2); | |
0983979b | 965 | stl_p(v++, 93); /* GPIO num ??? */ |
d238db7f AZ |
966 | |
967 | #if 0 | |
968 | /* Unknown tag */ | |
969 | ADD_TAG(6e09, 0); | |
970 | ||
971 | /* Kernel UART / console */ | |
972 | ADD_TAG(6e12, 0); | |
973 | #endif | |
974 | ||
975 | /* End of the list */ | |
0983979b PB |
976 | stl_p(p++, 0x00000000); |
977 | stl_p(p++, 0x00000000); | |
d238db7f AZ |
978 | } |
979 | ||
7e7c5e4c AZ |
980 | /* This task is normally performed by the bootloader. If we're loading |
981 | * a kernel directly, we need to set up GPMC mappings ourselves. */ | |
982 | static void n800_gpmc_init(struct n800_s *s) | |
983 | { | |
984 | uint32_t config7 = | |
985 | (0xf << 8) | /* MASKADDRESS */ | |
986 | (1 << 6) | /* CSVALID */ | |
987 | (4 << 0); /* BASEADDRESS */ | |
988 | ||
989 | cpu_physical_memory_write(0x6800a078, /* GPMC_CONFIG7_0 */ | |
e1fe50dc | 990 | &config7, sizeof(config7)); |
7e7c5e4c AZ |
991 | } |
992 | ||
993 | /* Setup sequence done by the bootloader */ | |
e927bb00 | 994 | static void n8x0_boot_init(void *opaque) |
7e7c5e4c AZ |
995 | { |
996 | struct n800_s *s = (struct n800_s *) opaque; | |
997 | uint32_t buf; | |
998 | ||
999 | /* PRCM setup */ | |
1000 | #define omap_writel(addr, val) \ | |
1001 | buf = (val); \ | |
e1fe50dc | 1002 | cpu_physical_memory_write(addr, &buf, sizeof(buf)) |
7e7c5e4c AZ |
1003 | |
1004 | omap_writel(0x48008060, 0x41); /* PRCM_CLKSRC_CTRL */ | |
1005 | omap_writel(0x48008070, 1); /* PRCM_CLKOUT_CTRL */ | |
1006 | omap_writel(0x48008078, 0); /* PRCM_CLKEMUL_CTRL */ | |
1007 | omap_writel(0x48008090, 0); /* PRCM_VOLTSETUP */ | |
1008 | omap_writel(0x48008094, 0); /* PRCM_CLKSSETUP */ | |
1009 | omap_writel(0x48008098, 0); /* PRCM_POLCTRL */ | |
1010 | omap_writel(0x48008140, 2); /* CM_CLKSEL_MPU */ | |
1011 | omap_writel(0x48008148, 0); /* CM_CLKSTCTRL_MPU */ | |
1012 | omap_writel(0x48008158, 1); /* RM_RSTST_MPU */ | |
1013 | omap_writel(0x480081c8, 0x15); /* PM_WKDEP_MPU */ | |
1014 | omap_writel(0x480081d4, 0x1d4); /* PM_EVGENCTRL_MPU */ | |
1015 | omap_writel(0x480081d8, 0); /* PM_EVEGENONTIM_MPU */ | |
1016 | omap_writel(0x480081dc, 0); /* PM_EVEGENOFFTIM_MPU */ | |
1017 | omap_writel(0x480081e0, 0xc); /* PM_PWSTCTRL_MPU */ | |
1018 | omap_writel(0x48008200, 0x047e7ff7); /* CM_FCLKEN1_CORE */ | |
1019 | omap_writel(0x48008204, 0x00000004); /* CM_FCLKEN2_CORE */ | |
1020 | omap_writel(0x48008210, 0x047e7ff1); /* CM_ICLKEN1_CORE */ | |
1021 | omap_writel(0x48008214, 0x00000004); /* CM_ICLKEN2_CORE */ | |
1022 | omap_writel(0x4800821c, 0x00000000); /* CM_ICLKEN4_CORE */ | |
1023 | omap_writel(0x48008230, 0); /* CM_AUTOIDLE1_CORE */ | |
1024 | omap_writel(0x48008234, 0); /* CM_AUTOIDLE2_CORE */ | |
1025 | omap_writel(0x48008238, 7); /* CM_AUTOIDLE3_CORE */ | |
1026 | omap_writel(0x4800823c, 0); /* CM_AUTOIDLE4_CORE */ | |
1027 | omap_writel(0x48008240, 0x04360626); /* CM_CLKSEL1_CORE */ | |
1028 | omap_writel(0x48008244, 0x00000014); /* CM_CLKSEL2_CORE */ | |
1029 | omap_writel(0x48008248, 0); /* CM_CLKSTCTRL_CORE */ | |
1030 | omap_writel(0x48008300, 0x00000000); /* CM_FCLKEN_GFX */ | |
1031 | omap_writel(0x48008310, 0x00000000); /* CM_ICLKEN_GFX */ | |
1032 | omap_writel(0x48008340, 0x00000001); /* CM_CLKSEL_GFX */ | |
1033 | omap_writel(0x48008400, 0x00000004); /* CM_FCLKEN_WKUP */ | |
1034 | omap_writel(0x48008410, 0x00000004); /* CM_ICLKEN_WKUP */ | |
1035 | omap_writel(0x48008440, 0x00000000); /* CM_CLKSEL_WKUP */ | |
1036 | omap_writel(0x48008500, 0x000000cf); /* CM_CLKEN_PLL */ | |
1037 | omap_writel(0x48008530, 0x0000000c); /* CM_AUTOIDLE_PLL */ | |
1038 | omap_writel(0x48008540, /* CM_CLKSEL1_PLL */ | |
1039 | (0x78 << 12) | (6 << 8)); | |
1040 | omap_writel(0x48008544, 2); /* CM_CLKSEL2_PLL */ | |
1041 | ||
1042 | /* GPMC setup */ | |
1043 | n800_gpmc_init(s); | |
1044 | ||
1045 | /* Video setup */ | |
1046 | n800_dss_init(&s->blizzard); | |
1047 | ||
1048 | /* CPU setup */ | |
518ec134 | 1049 | s->mpu->cpu->env.GE = 0x5; |
0941041e AZ |
1050 | |
1051 | /* If the machine has a slided keyboard, open it */ | |
fddbd80c | 1052 | if (s->kbd) { |
518ec134 | 1053 | qemu_irq_raise(qdev_get_gpio_in(s->mpu->gpio, N810_SLIDE_GPIO)); |
fddbd80c | 1054 | } |
7e7c5e4c AZ |
1055 | } |
1056 | ||
1057 | #define OMAP_TAG_NOKIA_BT 0x4e01 | |
1058 | #define OMAP_TAG_WLAN_CX3110X 0x4e02 | |
1059 | #define OMAP_TAG_CBUS 0x4e03 | |
1060 | #define OMAP_TAG_EM_ASIC_BB5 0x4e04 | |
1061 | ||
e927bb00 AZ |
1062 | static struct omap_gpiosw_info_s { |
1063 | const char *name; | |
1064 | int line; | |
1065 | int type; | |
1066 | } n800_gpiosw_info[] = { | |
1067 | { | |
1068 | "bat_cover", N800_BAT_COVER_GPIO, | |
1069 | OMAP_GPIOSW_TYPE_COVER | OMAP_GPIOSW_INVERTED, | |
1070 | }, { | |
1071 | "cam_act", N800_CAM_ACT_GPIO, | |
1072 | OMAP_GPIOSW_TYPE_ACTIVITY, | |
1073 | }, { | |
1074 | "cam_turn", N800_CAM_TURN_GPIO, | |
1075 | OMAP_GPIOSW_TYPE_ACTIVITY | OMAP_GPIOSW_INVERTED, | |
1076 | }, { | |
1077 | "headphone", N8X0_HEADPHONE_GPIO, | |
1078 | OMAP_GPIOSW_TYPE_CONNECTION | OMAP_GPIOSW_INVERTED, | |
1079 | }, | |
b9d38e95 | 1080 | { NULL } |
e927bb00 AZ |
1081 | }, n810_gpiosw_info[] = { |
1082 | { | |
1083 | "gps_reset", N810_GPS_RESET_GPIO, | |
1084 | OMAP_GPIOSW_TYPE_ACTIVITY | OMAP_GPIOSW_OUTPUT, | |
1085 | }, { | |
1086 | "gps_wakeup", N810_GPS_WAKEUP_GPIO, | |
1087 | OMAP_GPIOSW_TYPE_ACTIVITY | OMAP_GPIOSW_OUTPUT, | |
1088 | }, { | |
1089 | "headphone", N8X0_HEADPHONE_GPIO, | |
1090 | OMAP_GPIOSW_TYPE_CONNECTION | OMAP_GPIOSW_INVERTED, | |
1091 | }, { | |
1092 | "kb_lock", N810_KB_LOCK_GPIO, | |
1093 | OMAP_GPIOSW_TYPE_COVER | OMAP_GPIOSW_INVERTED, | |
1094 | }, { | |
1095 | "sleepx_led", N810_SLEEPX_LED_GPIO, | |
1096 | OMAP_GPIOSW_TYPE_ACTIVITY | OMAP_GPIOSW_INVERTED | OMAP_GPIOSW_OUTPUT, | |
1097 | }, { | |
1098 | "slide", N810_SLIDE_GPIO, | |
1099 | OMAP_GPIOSW_TYPE_COVER | OMAP_GPIOSW_INVERTED, | |
1100 | }, | |
b9d38e95 | 1101 | { NULL } |
e927bb00 AZ |
1102 | }; |
1103 | ||
1104 | static struct omap_partition_info_s { | |
1105 | uint32_t offset; | |
1106 | uint32_t size; | |
1107 | int mask; | |
1108 | const char *name; | |
1109 | } n800_part_info[] = { | |
1110 | { 0x00000000, 0x00020000, 0x3, "bootloader" }, | |
1111 | { 0x00020000, 0x00060000, 0x0, "config" }, | |
1112 | { 0x00080000, 0x00200000, 0x0, "kernel" }, | |
1113 | { 0x00280000, 0x00200000, 0x3, "initfs" }, | |
1114 | { 0x00480000, 0x0fb80000, 0x3, "rootfs" }, | |
1115 | ||
b9d38e95 | 1116 | { 0, 0, 0, NULL } |
e927bb00 AZ |
1117 | }, n810_part_info[] = { |
1118 | { 0x00000000, 0x00020000, 0x3, "bootloader" }, | |
1119 | { 0x00020000, 0x00060000, 0x0, "config" }, | |
1120 | { 0x00080000, 0x00220000, 0x0, "kernel" }, | |
1121 | { 0x002a0000, 0x00400000, 0x0, "initfs" }, | |
1122 | { 0x006a0000, 0x0f960000, 0x0, "rootfs" }, | |
1123 | ||
b9d38e95 | 1124 | { 0, 0, 0, NULL } |
e927bb00 AZ |
1125 | }; |
1126 | ||
c227f099 | 1127 | static bdaddr_t n8x0_bd_addr = {{ N8X0_BD_ADDR }}; |
c580d92b | 1128 | |
e927bb00 | 1129 | static int n8x0_atag_setup(void *p, int model) |
7e7c5e4c AZ |
1130 | { |
1131 | uint8_t *b; | |
1132 | uint16_t *w; | |
1133 | uint32_t *l; | |
e927bb00 AZ |
1134 | struct omap_gpiosw_info_s *gpiosw; |
1135 | struct omap_partition_info_s *partition; | |
1136 | const char *tag; | |
7e7c5e4c AZ |
1137 | |
1138 | w = p; | |
1139 | ||
0983979b PB |
1140 | stw_p(w++, OMAP_TAG_UART); /* u16 tag */ |
1141 | stw_p(w++, 4); /* u16 len */ | |
1142 | stw_p(w++, (1 << 2) | (1 << 1) | (1 << 0)); /* uint enabled_uarts */ | |
fddbd80c | 1143 | w++; |
7e7c5e4c | 1144 | |
e927bb00 | 1145 | #if 0 |
0983979b PB |
1146 | stw_p(w++, OMAP_TAG_SERIAL_CONSOLE); /* u16 tag */ |
1147 | stw_p(w++, 4); /* u16 len */ | |
1148 | stw_p(w++, XLDR_LL_UART + 1); /* u8 console_uart */ | |
1149 | stw_p(w++, 115200); /* u32 console_speed */ | |
e927bb00 AZ |
1150 | #endif |
1151 | ||
0983979b PB |
1152 | stw_p(w++, OMAP_TAG_LCD); /* u16 tag */ |
1153 | stw_p(w++, 36); /* u16 len */ | |
e927bb00 AZ |
1154 | strcpy((void *) w, "QEMU LCD panel"); /* char panel_name[16] */ |
1155 | w += 8; | |
1156 | strcpy((void *) w, "blizzard"); /* char ctrl_name[16] */ | |
1157 | w += 8; | |
0983979b PB |
1158 | stw_p(w++, N810_BLIZZARD_RESET_GPIO); /* TODO: n800 s16 nreset_gpio */ |
1159 | stw_p(w++, 24); /* u8 data_lines */ | |
1160 | ||
1161 | stw_p(w++, OMAP_TAG_CBUS); /* u16 tag */ | |
1162 | stw_p(w++, 8); /* u16 len */ | |
1163 | stw_p(w++, N8X0_CBUS_CLK_GPIO); /* s16 clk_gpio */ | |
1164 | stw_p(w++, N8X0_CBUS_DAT_GPIO); /* s16 dat_gpio */ | |
1165 | stw_p(w++, N8X0_CBUS_SEL_GPIO); /* s16 sel_gpio */ | |
fddbd80c | 1166 | w++; |
7e7c5e4c | 1167 | |
0983979b PB |
1168 | stw_p(w++, OMAP_TAG_EM_ASIC_BB5); /* u16 tag */ |
1169 | stw_p(w++, 4); /* u16 len */ | |
1170 | stw_p(w++, N8X0_RETU_GPIO); /* s16 retu_irq_gpio */ | |
1171 | stw_p(w++, N8X0_TAHVO_GPIO); /* s16 tahvo_irq_gpio */ | |
e927bb00 AZ |
1172 | |
1173 | gpiosw = (model == 810) ? n810_gpiosw_info : n800_gpiosw_info; | |
fddbd80c | 1174 | for (; gpiosw->name; gpiosw++) { |
0983979b PB |
1175 | stw_p(w++, OMAP_TAG_GPIO_SWITCH); /* u16 tag */ |
1176 | stw_p(w++, 20); /* u16 len */ | |
e927bb00 AZ |
1177 | strcpy((void *) w, gpiosw->name); /* char name[12] */ |
1178 | w += 6; | |
0983979b PB |
1179 | stw_p(w++, gpiosw->line); /* u16 gpio */ |
1180 | stw_p(w++, gpiosw->type); | |
1181 | stw_p(w++, 0); | |
1182 | stw_p(w++, 0); | |
e927bb00 | 1183 | } |
7e7c5e4c | 1184 | |
0983979b PB |
1185 | stw_p(w++, OMAP_TAG_NOKIA_BT); /* u16 tag */ |
1186 | stw_p(w++, 12); /* u16 len */ | |
7e7c5e4c | 1187 | b = (void *) w; |
0983979b PB |
1188 | stb_p(b++, 0x01); /* u8 chip_type (CSR) */ |
1189 | stb_p(b++, N8X0_BT_WKUP_GPIO); /* u8 bt_wakeup_gpio */ | |
1190 | stb_p(b++, N8X0_BT_HOST_WKUP_GPIO); /* u8 host_wakeup_gpio */ | |
1191 | stb_p(b++, N8X0_BT_RESET_GPIO); /* u8 reset_gpio */ | |
1192 | stb_p(b++, BT_UART + 1); /* u8 bt_uart */ | |
c580d92b | 1193 | memcpy(b, &n8x0_bd_addr, 6); /* u8 bd_addr[6] */ |
7e7c5e4c | 1194 | b += 6; |
0983979b | 1195 | stb_p(b++, 0x02); /* u8 bt_sysclk (38.4) */ |
7e7c5e4c AZ |
1196 | w = (void *) b; |
1197 | ||
0983979b PB |
1198 | stw_p(w++, OMAP_TAG_WLAN_CX3110X); /* u16 tag */ |
1199 | stw_p(w++, 8); /* u16 len */ | |
1200 | stw_p(w++, 0x25); /* u8 chip_type */ | |
1201 | stw_p(w++, N8X0_WLAN_PWR_GPIO); /* s16 power_gpio */ | |
1202 | stw_p(w++, N8X0_WLAN_IRQ_GPIO); /* s16 irq_gpio */ | |
1203 | stw_p(w++, -1); /* s16 spi_cs_gpio */ | |
7e7c5e4c | 1204 | |
0983979b PB |
1205 | stw_p(w++, OMAP_TAG_MMC); /* u16 tag */ |
1206 | stw_p(w++, 16); /* u16 len */ | |
e927bb00 | 1207 | if (model == 810) { |
0983979b PB |
1208 | stw_p(w++, 0x23f); /* unsigned flags */ |
1209 | stw_p(w++, -1); /* s16 power_pin */ | |
1210 | stw_p(w++, -1); /* s16 switch_pin */ | |
1211 | stw_p(w++, -1); /* s16 wp_pin */ | |
1212 | stw_p(w++, 0x240); /* unsigned flags */ | |
1213 | stw_p(w++, 0xc000); /* s16 power_pin */ | |
1214 | stw_p(w++, 0x0248); /* s16 switch_pin */ | |
1215 | stw_p(w++, 0xc000); /* s16 wp_pin */ | |
e927bb00 | 1216 | } else { |
0983979b PB |
1217 | stw_p(w++, 0xf); /* unsigned flags */ |
1218 | stw_p(w++, -1); /* s16 power_pin */ | |
1219 | stw_p(w++, -1); /* s16 switch_pin */ | |
1220 | stw_p(w++, -1); /* s16 wp_pin */ | |
1221 | stw_p(w++, 0); /* unsigned flags */ | |
1222 | stw_p(w++, 0); /* s16 power_pin */ | |
1223 | stw_p(w++, 0); /* s16 switch_pin */ | |
1224 | stw_p(w++, 0); /* s16 wp_pin */ | |
e927bb00 | 1225 | } |
7e7c5e4c | 1226 | |
0983979b PB |
1227 | stw_p(w++, OMAP_TAG_TEA5761); /* u16 tag */ |
1228 | stw_p(w++, 4); /* u16 len */ | |
1229 | stw_p(w++, N8X0_TEA5761_CS_GPIO); /* u16 enable_gpio */ | |
fddbd80c | 1230 | w++; |
7e7c5e4c | 1231 | |
e927bb00 | 1232 | partition = (model == 810) ? n810_part_info : n800_part_info; |
fddbd80c | 1233 | for (; partition->name; partition++) { |
0983979b PB |
1234 | stw_p(w++, OMAP_TAG_PARTITION); /* u16 tag */ |
1235 | stw_p(w++, 28); /* u16 len */ | |
e927bb00 AZ |
1236 | strcpy((void *) w, partition->name); /* char name[16] */ |
1237 | l = (void *) (w + 8); | |
0983979b PB |
1238 | stl_p(l++, partition->size); /* unsigned int size */ |
1239 | stl_p(l++, partition->offset); /* unsigned int offset */ | |
1240 | stl_p(l++, partition->mask); /* unsigned int mask_flags */ | |
e927bb00 AZ |
1241 | w = (void *) l; |
1242 | } | |
7e7c5e4c | 1243 | |
0983979b PB |
1244 | stw_p(w++, OMAP_TAG_BOOT_REASON); /* u16 tag */ |
1245 | stw_p(w++, 12); /* u16 len */ | |
7e7c5e4c AZ |
1246 | #if 0 |
1247 | strcpy((void *) w, "por"); /* char reason_str[12] */ | |
1248 | strcpy((void *) w, "charger"); /* char reason_str[12] */ | |
1249 | strcpy((void *) w, "32wd_to"); /* char reason_str[12] */ | |
1250 | strcpy((void *) w, "sw_rst"); /* char reason_str[12] */ | |
1251 | strcpy((void *) w, "mbus"); /* char reason_str[12] */ | |
1252 | strcpy((void *) w, "unknown"); /* char reason_str[12] */ | |
1253 | strcpy((void *) w, "swdg_to"); /* char reason_str[12] */ | |
1254 | strcpy((void *) w, "sec_vio"); /* char reason_str[12] */ | |
1255 | strcpy((void *) w, "pwr_key"); /* char reason_str[12] */ | |
1256 | strcpy((void *) w, "rtc_alarm"); /* char reason_str[12] */ | |
1257 | #else | |
1258 | strcpy((void *) w, "pwr_key"); /* char reason_str[12] */ | |
1259 | #endif | |
1260 | w += 6; | |
1261 | ||
e927bb00 | 1262 | tag = (model == 810) ? "RX-44" : "RX-34"; |
0983979b PB |
1263 | stw_p(w++, OMAP_TAG_VERSION_STR); /* u16 tag */ |
1264 | stw_p(w++, 24); /* u16 len */ | |
7e7c5e4c AZ |
1265 | strcpy((void *) w, "product"); /* char component[12] */ |
1266 | w += 6; | |
e927bb00 | 1267 | strcpy((void *) w, tag); /* char version[12] */ |
7e7c5e4c AZ |
1268 | w += 6; |
1269 | ||
0983979b PB |
1270 | stw_p(w++, OMAP_TAG_VERSION_STR); /* u16 tag */ |
1271 | stw_p(w++, 24); /* u16 len */ | |
7e7c5e4c AZ |
1272 | strcpy((void *) w, "hw-build"); /* char component[12] */ |
1273 | w += 6; | |
93bfef4c CV |
1274 | strcpy((void *) w, "QEMU "); |
1275 | pstrcat((void *) w, 12, qemu_get_version()); /* char version[12] */ | |
7e7c5e4c AZ |
1276 | w += 6; |
1277 | ||
e927bb00 | 1278 | tag = (model == 810) ? "1.1.10-qemu" : "1.1.6-qemu"; |
0983979b PB |
1279 | stw_p(w++, OMAP_TAG_VERSION_STR); /* u16 tag */ |
1280 | stw_p(w++, 24); /* u16 len */ | |
7e7c5e4c AZ |
1281 | strcpy((void *) w, "nolo"); /* char component[12] */ |
1282 | w += 6; | |
e927bb00 | 1283 | strcpy((void *) w, tag); /* char version[12] */ |
7e7c5e4c | 1284 | w += 6; |
7e7c5e4c AZ |
1285 | |
1286 | return (void *) w - p; | |
1287 | } | |
1288 | ||
462a8bc6 | 1289 | static int n800_atag_setup(const struct arm_boot_info *info, void *p) |
e927bb00 AZ |
1290 | { |
1291 | return n8x0_atag_setup(p, 800); | |
1292 | } | |
7e7c5e4c | 1293 | |
462a8bc6 | 1294 | static int n810_atag_setup(const struct arm_boot_info *info, void *p) |
e927bb00 AZ |
1295 | { |
1296 | return n8x0_atag_setup(p, 810); | |
1297 | } | |
1298 | ||
3ef96221 | 1299 | static void n8x0_init(MachineState *machine, |
462b69bb | 1300 | struct arm_boot_info *binfo, int model) |
7e7c5e4c | 1301 | { |
aee39503 | 1302 | MemoryRegion *sysmem = get_system_memory(); |
7267c094 | 1303 | struct n800_s *s = (struct n800_s *) g_malloc0(sizeof(*s)); |
e927bb00 | 1304 | int sdram_size = binfo->ram_size; |
7e7c5e4c | 1305 | |
3ef96221 | 1306 | s->mpu = omap2420_mpu_init(sysmem, sdram_size, machine->cpu_model); |
7e7c5e4c | 1307 | |
0941041e AZ |
1308 | /* Setup peripherals |
1309 | * | |
1310 | * Believed external peripherals layout in the N810: | |
1311 | * (spi bus 1) | |
1312 | * tsc2005 | |
1313 | * lcd_mipid | |
1314 | * (spi bus 2) | |
1315 | * Conexant cx3110x (WLAN) | |
1316 | * optional: pc2400m (WiMAX) | |
1317 | * (i2c bus 0) | |
1318 | * TLV320AIC33 (audio codec) | |
1319 | * TCM825x (camera by Toshiba) | |
1320 | * lp5521 (clever LEDs) | |
1321 | * tsl2563 (light sensor, hwmon, model 7, rev. 0) | |
1322 | * lm8323 (keypad, manf 00, rev 04) | |
1323 | * (i2c bus 1) | |
1324 | * tmp105 (temperature sensor, hwmon) | |
1325 | * menelaus (pm) | |
d238db7f AZ |
1326 | * (somewhere on i2c - maybe N800-only) |
1327 | * tea5761 (FM tuner) | |
1328 | * (serial 0) | |
1329 | * GPS | |
1330 | * (some serial port) | |
1331 | * csr41814 (Bluetooth) | |
0941041e | 1332 | */ |
e927bb00 | 1333 | n8x0_gpio_setup(s); |
7e7c5e4c | 1334 | n8x0_nand_setup(s); |
e927bb00 | 1335 | n8x0_i2c_setup(s); |
fddbd80c | 1336 | if (model == 800) { |
e927bb00 | 1337 | n800_tsc_kbd_setup(s); |
fddbd80c | 1338 | } else if (model == 810) { |
e927bb00 | 1339 | n810_tsc_setup(s); |
1d4e547b AZ |
1340 | n810_kbd_setup(s); |
1341 | } | |
e927bb00 | 1342 | n8x0_spi_setup(s); |
3023f332 | 1343 | n8x0_dss_setup(s); |
e927bb00 | 1344 | n8x0_cbus_setup(s); |
58a26b47 | 1345 | n8x0_uart_setup(s); |
094b287f | 1346 | if (usb_enabled(false)) { |
e927bb00 | 1347 | n8x0_usb_setup(s); |
094b287f | 1348 | } |
7e7c5e4c | 1349 | |
3ef96221 | 1350 | if (machine->kernel_filename) { |
7e7c5e4c | 1351 | /* Or at the linux loader. */ |
3ef96221 MA |
1352 | binfo->kernel_filename = machine->kernel_filename; |
1353 | binfo->kernel_cmdline = machine->kernel_cmdline; | |
1354 | binfo->initrd_filename = machine->initrd_filename; | |
3aaa8dfa | 1355 | arm_load_kernel(s->mpu->cpu, binfo); |
7e7c5e4c | 1356 | |
a08d4367 | 1357 | qemu_register_reset(n8x0_boot_init, s); |
7e7c5e4c AZ |
1358 | } |
1359 | ||
462b69bb | 1360 | if (option_rom[0].name && |
3ef96221 | 1361 | (machine->boot_order[0] == 'n' || !machine->kernel_filename)) { |
5c130f65 | 1362 | uint8_t nolo_tags[0x10000]; |
d238db7f | 1363 | /* No, wait, better start at the ROM. */ |
518ec134 | 1364 | s->mpu->cpu->env.regs[15] = OMAP2_Q2_BASE + 0x400000; |
d238db7f AZ |
1365 | |
1366 | /* This is intended for loading the `secondary.bin' program from | |
1367 | * Nokia images (the NOLO bootloader). The entry point seems | |
1368 | * to be at OMAP2_Q2_BASE + 0x400000. | |
1369 | * | |
1370 | * The `2nd.bin' files contain some kind of earlier boot code and | |
1371 | * for them the entry point needs to be set to OMAP2_SRAM_BASE. | |
1372 | * | |
1373 | * The code above is for loading the `zImage' file from Nokia | |
1374 | * images. */ | |
591f73f6 PM |
1375 | load_image_targphys(option_rom[0].name, |
1376 | OMAP2_Q2_BASE + 0x400000, | |
1377 | sdram_size - 0x400000); | |
d238db7f | 1378 | |
5c130f65 PB |
1379 | n800_setup_nolo_tags(nolo_tags); |
1380 | cpu_physical_memory_write(OMAP2_SRAM_BASE, nolo_tags, 0x10000); | |
d238db7f | 1381 | } |
7e7c5e4c AZ |
1382 | } |
1383 | ||
e927bb00 AZ |
1384 | static struct arm_boot_info n800_binfo = { |
1385 | .loader_start = OMAP2_Q2_BASE, | |
1386 | /* Actually two chips of 0x4000000 bytes each */ | |
1387 | .ram_size = 0x08000000, | |
1388 | .board_id = 0x4f7, | |
1389 | .atag_board = n800_atag_setup, | |
1390 | }; | |
1391 | ||
1392 | static struct arm_boot_info n810_binfo = { | |
1393 | .loader_start = OMAP2_Q2_BASE, | |
1394 | /* Actually two chips of 0x4000000 bytes each */ | |
1395 | .ram_size = 0x08000000, | |
1396 | /* 0x60c and 0x6bf (WiMAX Edition) have been assigned but are not | |
1397 | * used by some older versions of the bootloader and 5555 is used | |
1398 | * instead (including versions that shipped with many devices). */ | |
1399 | .board_id = 0x60c, | |
1400 | .atag_board = n810_atag_setup, | |
1401 | }; | |
1402 | ||
3ef96221 | 1403 | static void n800_init(MachineState *machine) |
e927bb00 | 1404 | { |
3ef96221 | 1405 | return n8x0_init(machine, &n800_binfo, 800); |
e927bb00 AZ |
1406 | } |
1407 | ||
3ef96221 | 1408 | static void n810_init(MachineState *machine) |
e927bb00 | 1409 | { |
3ef96221 | 1410 | return n8x0_init(machine, &n810_binfo, 810); |
e927bb00 AZ |
1411 | } |
1412 | ||
f80f9ec9 | 1413 | static QEMUMachine n800_machine = { |
4b32e168 AL |
1414 | .name = "n800", |
1415 | .desc = "Nokia N800 tablet aka. RX-34 (OMAP2420)", | |
1416 | .init = n800_init, | |
c1654732 | 1417 | .default_boot_order = "", |
7e7c5e4c | 1418 | }; |
e927bb00 | 1419 | |
f80f9ec9 | 1420 | static QEMUMachine n810_machine = { |
4b32e168 AL |
1421 | .name = "n810", |
1422 | .desc = "Nokia N810 tablet aka. RX-44 (OMAP2420)", | |
1423 | .init = n810_init, | |
c1654732 | 1424 | .default_boot_order = "", |
e927bb00 | 1425 | }; |
f80f9ec9 AL |
1426 | |
1427 | static void nseries_machine_init(void) | |
1428 | { | |
1429 | qemu_register_machine(&n800_machine); | |
1430 | qemu_register_machine(&n810_machine); | |
1431 | } | |
1432 | ||
1433 | machine_init(nseries_machine_init); |