1 /* vim:set shiftwidth=4 ts=4 et: */
3 * PXA255 Sharp Zaurus SL-6000 PDA platform
5 * Copyright (c) 2008 Dmitry Baryshkov
7 * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org>
8 * This code is licensed under the GNU GPL v2.
10 * Contributions after 2012-01-13 are licensed under the terms of the
11 * GNU GPL, version 2 or (at your option) any later version.
14 #include "qemu/osdep.h"
15 #include "qapi/error.h"
16 #include "sysemu/runstate.h"
17 #include "hw/arm/pxa.h"
18 #include "hw/arm/boot.h"
19 #include "hw/arm/sharpsl.h"
20 #include "hw/pcmcia.h"
21 #include "hw/boards.h"
22 #include "hw/display/tc6393xb.h"
23 #include "hw/i2c/i2c.h"
25 #include "hw/ssi/ssi.h"
26 #include "hw/sysbus.h"
27 #include "hw/misc/led.h"
28 #include "exec/address-spaces.h"
29 #include "qom/object.h"
31 #define TOSA_RAM 0x04000000
32 #define TOSA_ROM 0x00800000
34 #define TOSA_GPIO_USB_IN (5)
35 #define TOSA_GPIO_nSD_DETECT (9)
36 #define TOSA_GPIO_ON_RESET (19)
37 #define TOSA_GPIO_CF_IRQ (21) /* CF slot0 Ready */
38 #define TOSA_GPIO_CF_CD (13)
39 #define TOSA_GPIO_TC6393XB_INT (15)
40 #define TOSA_GPIO_JC_CF_IRQ (36) /* CF slot1 Ready */
42 #define TOSA_SCOOP_GPIO_BASE 1
43 #define TOSA_GPIO_IR_POWERDWN (TOSA_SCOOP_GPIO_BASE + 2)
44 #define TOSA_GPIO_SD_WP (TOSA_SCOOP_GPIO_BASE + 3)
45 #define TOSA_GPIO_PWR_ON (TOSA_SCOOP_GPIO_BASE + 4)
47 #define TOSA_SCOOP_JC_GPIO_BASE 1
48 #define TOSA_GPIO_BT_LED (TOSA_SCOOP_JC_GPIO_BASE + 0)
49 #define TOSA_GPIO_NOTE_LED (TOSA_SCOOP_JC_GPIO_BASE + 1)
50 #define TOSA_GPIO_CHRG_ERR_LED (TOSA_SCOOP_JC_GPIO_BASE + 2)
51 #define TOSA_GPIO_TC6393XB_L3V_ON (TOSA_SCOOP_JC_GPIO_BASE + 5)
52 #define TOSA_GPIO_WLAN_LED (TOSA_SCOOP_JC_GPIO_BASE + 7)
58 static void tosa_microdrive_attach(PXA2xxState
*cpu
)
63 dinfo
= drive_get(IF_IDE
, 0, 0);
64 if (!dinfo
|| dinfo
->media_cd
)
66 md
= dscm1xxxx_init(dinfo
);
67 pxa2xx_pcmcia_attach(cpu
->pcmcia
[0], md
);
71 * Encapsulation of some GPIO line behaviour for the Tosa board
74 * + named GPIO inputs "leds[0..3]": assert to light LEDs
75 * + named GPIO input "reset": when asserted, resets the system
78 #define TYPE_TOSA_MISC_GPIO "tosa-misc-gpio"
79 OBJECT_DECLARE_SIMPLE_TYPE(TosaMiscGPIOState
, TOSA_MISC_GPIO
)
81 struct TosaMiscGPIOState
{
82 SysBusDevice parent_obj
;
85 static void tosa_reset(void *opaque
, int line
, int level
)
88 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET
);
92 static void tosa_misc_gpio_init(Object
*obj
)
94 DeviceState
*dev
= DEVICE(obj
);
96 qdev_init_gpio_in_named(dev
, tosa_reset
, "reset", 1);
99 static void tosa_gpio_setup(PXA2xxState
*cpu
,
104 DeviceState
*misc_gpio
;
107 misc_gpio
= sysbus_create_simple(TYPE_TOSA_MISC_GPIO
, -1, NULL
);
110 pxa2xx_mmci_handlers(cpu
->mmc
,
111 qdev_get_gpio_in(scp0
, TOSA_GPIO_SD_WP
),
112 qemu_irq_invert(qdev_get_gpio_in(cpu
->gpio
, TOSA_GPIO_nSD_DETECT
)));
115 qdev_connect_gpio_out(cpu
->gpio
, TOSA_GPIO_ON_RESET
,
116 qdev_get_gpio_in_named(misc_gpio
, "reset", 0));
118 /* PCMCIA signals: card's IRQ and Card-Detect */
119 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[0],
120 qdev_get_gpio_in(cpu
->gpio
, TOSA_GPIO_CF_IRQ
),
121 qdev_get_gpio_in(cpu
->gpio
, TOSA_GPIO_CF_CD
));
123 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[1],
124 qdev_get_gpio_in(cpu
->gpio
, TOSA_GPIO_JC_CF_IRQ
),
127 led
[0] = led_create_simple(OBJECT(misc_gpio
), GPIO_POLARITY_ACTIVE_HIGH
,
128 LED_COLOR_BLUE
, "bluetooth");
129 led
[1] = led_create_simple(OBJECT(misc_gpio
), GPIO_POLARITY_ACTIVE_HIGH
,
130 LED_COLOR_GREEN
, "note");
131 led
[2] = led_create_simple(OBJECT(misc_gpio
), GPIO_POLARITY_ACTIVE_HIGH
,
132 LED_COLOR_AMBER
, "charger-error");
133 led
[3] = led_create_simple(OBJECT(misc_gpio
), GPIO_POLARITY_ACTIVE_HIGH
,
134 LED_COLOR_GREEN
, "wlan");
136 qdev_connect_gpio_out(scp1
, TOSA_GPIO_BT_LED
,
137 qdev_get_gpio_in(DEVICE(led
[0]), 0));
138 qdev_connect_gpio_out(scp1
, TOSA_GPIO_NOTE_LED
,
139 qdev_get_gpio_in(DEVICE(led
[1]), 0));
140 qdev_connect_gpio_out(scp1
, TOSA_GPIO_CHRG_ERR_LED
,
141 qdev_get_gpio_in(DEVICE(led
[2]), 0));
142 qdev_connect_gpio_out(scp1
, TOSA_GPIO_WLAN_LED
,
143 qdev_get_gpio_in(DEVICE(led
[3]), 0));
145 qdev_connect_gpio_out(scp1
, TOSA_GPIO_TC6393XB_L3V_ON
, tc6393xb_l3v_get(tmio
));
148 qemu_irq_raise(qdev_get_gpio_in(cpu
->gpio
, TOSA_GPIO_USB_IN
));
151 static uint32_t tosa_ssp_tansfer(SSIPeripheral
*dev
, uint32_t value
)
153 fprintf(stderr
, "TG: %u %02x\n", value
>> 5, value
& 0x1f);
157 static void tosa_ssp_realize(SSIPeripheral
*dev
, Error
**errp
)
162 #define TYPE_TOSA_DAC "tosa_dac"
163 OBJECT_DECLARE_SIMPLE_TYPE(TosaDACState
, TOSA_DAC
)
165 struct TosaDACState
{
172 static int tosa_dac_send(I2CSlave
*i2c
, uint8_t data
)
174 TosaDACState
*s
= TOSA_DAC(i2c
);
176 s
->buf
[s
->len
] = data
;
179 fprintf(stderr
, "%s: message too long (%i bytes)\n", __func__
, s
->len
);
185 fprintf(stderr
, "dac: channel %d value 0x%02x\n",
186 s
->buf
[0], s
->buf
[1]);
192 static int tosa_dac_event(I2CSlave
*i2c
, enum i2c_event event
)
194 TosaDACState
*s
= TOSA_DAC(i2c
);
201 printf("%s: recv not supported!!!\n", __func__
);
206 printf("%s: message too short (%i bytes)\n", __func__
, s
->len
);
208 printf("%s: message too long\n", __func__
);
218 static uint8_t tosa_dac_recv(I2CSlave
*s
)
220 printf("%s: recv not supported!!!\n", __func__
);
224 static void tosa_tg_init(PXA2xxState
*cpu
)
226 I2CBus
*bus
= pxa2xx_i2c_bus(cpu
->i2c
[0]);
227 i2c_slave_create_simple(bus
, TYPE_TOSA_DAC
, DAC_BASE
);
228 ssi_create_peripheral(cpu
->ssp
[1], "tosa-ssp");
232 static struct arm_boot_info tosa_binfo
= {
233 .loader_start
= PXA2XX_SDRAM_BASE
,
234 .ram_size
= 0x04000000,
237 static void tosa_init(MachineState
*machine
)
239 MemoryRegion
*address_space_mem
= get_system_memory();
240 MemoryRegion
*rom
= g_new(MemoryRegion
, 1);
243 DeviceState
*scp0
, *scp1
;
245 mpu
= pxa255_init(tosa_binfo
.ram_size
);
247 memory_region_init_rom(rom
, NULL
, "tosa.rom", TOSA_ROM
, &error_fatal
);
248 memory_region_add_subregion(address_space_mem
, 0, rom
);
250 tmio
= tc6393xb_init(address_space_mem
, 0x10000000,
251 qdev_get_gpio_in(mpu
->gpio
, TOSA_GPIO_TC6393XB_INT
));
253 scp0
= sysbus_create_simple("scoop", 0x08800000, NULL
);
254 scp1
= sysbus_create_simple("scoop", 0x14800040, NULL
);
256 tosa_gpio_setup(mpu
, scp0
, scp1
, tmio
);
258 tosa_microdrive_attach(mpu
);
262 tosa_binfo
.board_id
= 0x208;
263 arm_load_kernel(mpu
->cpu
, machine
, &tosa_binfo
);
264 sl_bootparam_write(SL_PXA_PARAM_BASE
);
267 static void tosapda_machine_init(MachineClass
*mc
)
269 mc
->desc
= "Sharp SL-6000 (Tosa) PDA (PXA255)";
270 mc
->init
= tosa_init
;
271 mc
->block_default_type
= IF_IDE
;
272 mc
->ignore_memory_transaction_failures
= true;
275 DEFINE_MACHINE("tosa", tosapda_machine_init
)
277 static void tosa_dac_class_init(ObjectClass
*klass
, void *data
)
279 I2CSlaveClass
*k
= I2C_SLAVE_CLASS(klass
);
281 k
->event
= tosa_dac_event
;
282 k
->recv
= tosa_dac_recv
;
283 k
->send
= tosa_dac_send
;
286 static const TypeInfo tosa_dac_info
= {
287 .name
= TYPE_TOSA_DAC
,
288 .parent
= TYPE_I2C_SLAVE
,
289 .instance_size
= sizeof(TosaDACState
),
290 .class_init
= tosa_dac_class_init
,
293 static void tosa_ssp_class_init(ObjectClass
*klass
, void *data
)
295 SSIPeripheralClass
*k
= SSI_PERIPHERAL_CLASS(klass
);
297 k
->realize
= tosa_ssp_realize
;
298 k
->transfer
= tosa_ssp_tansfer
;
301 static const TypeInfo tosa_ssp_info
= {
303 .parent
= TYPE_SSI_PERIPHERAL
,
304 .instance_size
= sizeof(SSIPeripheral
),
305 .class_init
= tosa_ssp_class_init
,
308 static const TypeInfo tosa_misc_gpio_info
= {
309 .name
= TYPE_TOSA_MISC_GPIO
,
310 .parent
= TYPE_SYS_BUS_DEVICE
,
311 .instance_size
= sizeof(TosaMiscGPIOState
),
312 .instance_init
= tosa_misc_gpio_init
,
314 * No class init required: device has no internal state so does not
315 * need to set up reset or vmstate, and has no realize method.
319 static void tosa_register_types(void)
321 type_register_static(&tosa_dac_info
);
322 type_register_static(&tosa_ssp_info
);
323 type_register_static(&tosa_misc_gpio_info
);
326 type_init(tosa_register_types
)