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.
23 #define TOSA_RAM 0x04000000
24 #define TOSA_ROM 0x00800000
26 #define TOSA_GPIO_nSD_DETECT (9)
27 #define TOSA_GPIO_ON_RESET (19)
28 #define TOSA_GPIO_CF_IRQ (21) /* CF slot0 Ready */
29 #define TOSA_GPIO_CF_CD (13)
30 #define TOSA_GPIO_TC6393XB_INT (15)
31 #define TOSA_GPIO_JC_CF_IRQ (36) /* CF slot1 Ready */
33 #define TOSA_SCOOP_GPIO_BASE 1
34 #define TOSA_GPIO_IR_POWERDWN (TOSA_SCOOP_GPIO_BASE + 2)
35 #define TOSA_GPIO_SD_WP (TOSA_SCOOP_GPIO_BASE + 3)
36 #define TOSA_GPIO_PWR_ON (TOSA_SCOOP_GPIO_BASE + 4)
38 #define TOSA_SCOOP_JC_GPIO_BASE 1
39 #define TOSA_GPIO_BT_LED (TOSA_SCOOP_JC_GPIO_BASE + 0)
40 #define TOSA_GPIO_NOTE_LED (TOSA_SCOOP_JC_GPIO_BASE + 1)
41 #define TOSA_GPIO_CHRG_ERR_LED (TOSA_SCOOP_JC_GPIO_BASE + 2)
42 #define TOSA_GPIO_TC6393XB_L3V_ON (TOSA_SCOOP_JC_GPIO_BASE + 5)
43 #define TOSA_GPIO_WLAN_LED (TOSA_SCOOP_JC_GPIO_BASE + 7)
49 static void tosa_microdrive_attach(PXA2xxState
*cpu
)
55 dinfo
= drive_get(IF_IDE
, 0, 0);
59 if (bdrv_is_inserted(bs
) && !bdrv_is_removable(bs
)) {
60 md
= dscm1xxxx_init(dinfo
);
61 pxa2xx_pcmcia_attach(cpu
->pcmcia
[0], md
);
65 static void tosa_out_switch(void *opaque
, int line
, int level
)
69 fprintf(stderr
, "blue LED %s.\n", level
? "on" : "off");
72 fprintf(stderr
, "green LED %s.\n", level
? "on" : "off");
75 fprintf(stderr
, "amber LED %s.\n", level
? "on" : "off");
78 fprintf(stderr
, "wlan LED %s.\n", level
? "on" : "off");
81 fprintf(stderr
, "Uhandled out event: %d = %d\n", line
, level
);
87 static void tosa_gpio_setup(PXA2xxState
*cpu
,
92 qemu_irq
*outsignals
= qemu_allocate_irqs(tosa_out_switch
, cpu
, 4);
94 pxa2xx_mmci_handlers(cpu
->mmc
,
95 scoop_gpio_in_get(scp0
)[TOSA_GPIO_SD_WP
],
96 qemu_irq_invert(pxa2xx_gpio_in_get(cpu
->gpio
)[TOSA_GPIO_nSD_DETECT
]));
99 pxa2xx_gpio_out_set(cpu
->gpio
, TOSA_GPIO_ON_RESET
, cpu
->reset
);
101 /* PCMCIA signals: card's IRQ and Card-Detect */
102 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[0],
103 pxa2xx_gpio_in_get(cpu
->gpio
)[TOSA_GPIO_CF_IRQ
],
104 pxa2xx_gpio_in_get(cpu
->gpio
)[TOSA_GPIO_CF_CD
]);
106 pxa2xx_pcmcia_set_irq_cb(cpu
->pcmcia
[1],
107 pxa2xx_gpio_in_get(cpu
->gpio
)[TOSA_GPIO_JC_CF_IRQ
],
110 scoop_gpio_out_set(scp1
, TOSA_GPIO_BT_LED
, outsignals
[0]);
111 scoop_gpio_out_set(scp1
, TOSA_GPIO_NOTE_LED
, outsignals
[1]);
112 scoop_gpio_out_set(scp1
, TOSA_GPIO_CHRG_ERR_LED
, outsignals
[2]);
113 scoop_gpio_out_set(scp1
, TOSA_GPIO_WLAN_LED
, outsignals
[3]);
115 scoop_gpio_out_set(scp1
, TOSA_GPIO_TC6393XB_L3V_ON
, tc6393xb_l3v_get(tmio
));
118 static uint32_t tosa_ssp_tansfer(SSISlave
*dev
, uint32_t value
)
120 fprintf(stderr
, "TG: %d %02x\n", value
>> 5, value
& 0x1f);
124 static int tosa_ssp_init(SSISlave
*dev
)
136 static int tosa_dac_send(i2c_slave
*i2c
, uint8_t data
)
138 TosaDACState
*s
= FROM_I2C_SLAVE(TosaDACState
, i2c
);
139 s
->buf
[s
->len
] = data
;
142 fprintf(stderr
, "%s: message too long (%i bytes)\n", __FUNCTION__
, s
->len
);
148 fprintf(stderr
, "dac: channel %d value 0x%02x\n",
149 s
->buf
[0], s
->buf
[1]);
155 static void tosa_dac_event(i2c_slave
*i2c
, enum i2c_event event
)
157 TosaDACState
*s
= FROM_I2C_SLAVE(TosaDACState
, i2c
);
163 printf("%s: recv not supported!!!\n", __FUNCTION__
);
168 printf("%s: message too short (%i bytes)\n", __FUNCTION__
, s
->len
);
170 printf("%s: message too long\n", __FUNCTION__
);
178 static int tosa_dac_recv(i2c_slave
*s
)
180 printf("%s: recv not supported!!!\n", __FUNCTION__
);
184 static int tosa_dac_init(i2c_slave
*i2c
)
190 static void tosa_tg_init(PXA2xxState
*cpu
)
192 i2c_bus
*bus
= pxa2xx_i2c_bus(cpu
->i2c
[0]);
193 i2c_create_slave(bus
, "tosa_dac", DAC_BASE
);
194 ssi_create_slave(cpu
->ssp
[1], "tosa-ssp");
198 static struct arm_boot_info tosa_binfo
= {
199 .loader_start
= PXA2XX_SDRAM_BASE
,
200 .ram_size
= 0x04000000,
203 static void tosa_init(ram_addr_t ram_size
,
204 const char *boot_device
,
205 const char *kernel_filename
, const char *kernel_cmdline
,
206 const char *initrd_filename
, const char *cpu_model
)
210 ScoopInfo
*scp0
, *scp1
;
213 cpu_model
= "pxa255";
215 cpu
= pxa255_init(tosa_binfo
.ram_size
);
217 cpu_register_physical_memory(0, TOSA_ROM
,
218 qemu_ram_alloc(TOSA_ROM
) | IO_MEM_ROM
);
220 tmio
= tc6393xb_init(0x10000000,
221 pxa2xx_gpio_in_get(cpu
->gpio
)[TOSA_GPIO_TC6393XB_INT
]);
223 scp0
= scoop_init(cpu
, 0, 0x08800000);
224 scp1
= scoop_init(cpu
, 1, 0x14800040);
226 tosa_gpio_setup(cpu
, scp0
, scp1
, tmio
);
228 tosa_microdrive_attach(cpu
);
232 tosa_binfo
.kernel_filename
= kernel_filename
;
233 tosa_binfo
.kernel_cmdline
= kernel_cmdline
;
234 tosa_binfo
.initrd_filename
= initrd_filename
;
235 tosa_binfo
.board_id
= 0x208;
236 arm_load_kernel(cpu
->env
, &tosa_binfo
);
237 sl_bootparam_write(SL_PXA_PARAM_BASE
);
240 static QEMUMachine tosapda_machine
= {
242 .desc
= "Tosa PDA (PXA255)",
246 static void tosapda_machine_init(void)
248 qemu_register_machine(&tosapda_machine
);
251 machine_init(tosapda_machine_init
);
253 static I2CSlaveInfo tosa_dac_info
= {
254 .qdev
.name
= "tosa_dac",
255 .qdev
.size
= sizeof(TosaDACState
),
256 .init
= tosa_dac_init
,
257 .event
= tosa_dac_event
,
258 .recv
= tosa_dac_recv
,
259 .send
= tosa_dac_send
262 static SSISlaveInfo tosa_ssp_info
= {
263 .qdev
.name
= "tosa-ssp",
264 .qdev
.size
= sizeof(SSISlave
),
265 .init
= tosa_ssp_init
,
266 .transfer
= tosa_ssp_tansfer
269 static void tosa_register_devices(void)
271 i2c_register_slave(&tosa_dac_info
);
272 ssi_register_slave(&tosa_ssp_info
);
275 device_init(tosa_register_devices
)