| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | /* vim:set shiftwidth=4 ts=4 et: */ | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * PXA255 Sharp Zaurus SL-6000 PDA platform | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2008 Dmitry Baryshkov | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Code based on spitz platform by Andrzej Zaborowski <balrog@zabor.org> | 
					
						
							|  |  |  |  * This code is licensed under the GNU GPL v2. | 
					
						
							| 
									
										
										
										
											2012-01-13 17:44:23 +01:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Contributions after 2012-01-13 are licensed under the terms of the | 
					
						
							|  |  |  |  * GNU GPL, version 2 or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 16:23:45 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
											  
											
												include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef.  Since then, we've moved to include qemu/osdep.h
everywhere.  Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h.  That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h.  Include qapi/error.h in .c files that need it and don't
get it now.  Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly.  Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h.  Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third.  Unfortunately, the number depending on
qapi-types.h shrinks only a little.  More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
											
										 
											2016-03-14 09:01:28 +01:00
										 |  |  | #include "qapi/error.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:59 +02:00
										 |  |  | #include "sysemu/runstate.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/arm/pxa.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-23 14:47:43 +01:00
										 |  |  | #include "hw/arm/boot.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/arm/sharpsl.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/pcmcia.h"
 | 
					
						
							|  |  |  | #include "hw/boards.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-12 18:54:08 +02:00
										 |  |  | #include "hw/display/tc6393xb.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-05 17:06:20 +01:00
										 |  |  | #include "hw/i2c/i2c.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-12 07:23:42 +02:00
										 |  |  | #include "hw/irq.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-21 14:15:03 +00:00
										 |  |  | #include "hw/ssi/ssi.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/sysbus.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-17 18:19:49 +01:00
										 |  |  | #include "exec/address-spaces.h"
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define TOSA_RAM    0x04000000
 | 
					
						
							|  |  |  | #define TOSA_ROM	0x00800000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-11 23:57:37 +03:00
										 |  |  | #define TOSA_GPIO_USB_IN		(5)
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | #define TOSA_GPIO_nSD_DETECT	(9)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_ON_RESET		(19)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_CF_IRQ		(21)	/* CF slot0 Ready */
 | 
					
						
							|  |  |  | #define TOSA_GPIO_CF_CD			(13)
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:45:49 +00:00
										 |  |  | #define TOSA_GPIO_TC6393XB_INT  (15)
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | #define TOSA_GPIO_JC_CF_IRQ		(36)	/* CF slot1 Ready */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  | #define TOSA_SCOOP_GPIO_BASE	1
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | #define TOSA_GPIO_IR_POWERDWN	(TOSA_SCOOP_GPIO_BASE + 2)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_SD_WP			(TOSA_SCOOP_GPIO_BASE + 3)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_PWR_ON		(TOSA_SCOOP_GPIO_BASE + 4)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  | #define TOSA_SCOOP_JC_GPIO_BASE		1
 | 
					
						
							|  |  |  | #define TOSA_GPIO_BT_LED		(TOSA_SCOOP_JC_GPIO_BASE + 0)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_NOTE_LED		(TOSA_SCOOP_JC_GPIO_BASE + 1)
 | 
					
						
							|  |  |  | #define TOSA_GPIO_CHRG_ERR_LED		(TOSA_SCOOP_JC_GPIO_BASE + 2)
 | 
					
						
							| 
									
										
										
										
											2008-11-04 09:04:41 +00:00
										 |  |  | #define TOSA_GPIO_TC6393XB_L3V_ON	(TOSA_SCOOP_JC_GPIO_BASE + 5)
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  | #define TOSA_GPIO_WLAN_LED		(TOSA_SCOOP_JC_GPIO_BASE + 7)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | #define	DAC_BASE	0x4e
 | 
					
						
							|  |  |  | #define DAC_CH1		0
 | 
					
						
							|  |  |  | #define DAC_CH2		1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  | static void tosa_microdrive_attach(PXA2xxState *cpu) | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  |     PCMCIACardState *md; | 
					
						
							| 
									
										
										
										
											2009-07-22 16:42:57 +02:00
										 |  |  |     DriveInfo *dinfo; | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-22 16:42:57 +02:00
										 |  |  |     dinfo = drive_get(IF_IDE, 0, 0); | 
					
						
							| 
									
										
										
										
											2011-08-03 15:08:13 +02:00
										 |  |  |     if (!dinfo || dinfo->media_cd) | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2011-08-03 15:08:13 +02:00
										 |  |  |     md = dscm1xxxx_init(dinfo); | 
					
						
							|  |  |  |     pxa2xx_pcmcia_attach(cpu->pcmcia[0], md); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  | static void tosa_out_switch(void *opaque, int line, int level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     switch (line) { | 
					
						
							|  |  |  |         case 0: | 
					
						
							|  |  |  |             fprintf(stderr, "blue LED %s.\n", level ? "on" : "off"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 1: | 
					
						
							|  |  |  |             fprintf(stderr, "green LED %s.\n", level ? "on" : "off"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 2: | 
					
						
							|  |  |  |             fprintf(stderr, "amber LED %s.\n", level ? "on" : "off"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case 3: | 
					
						
							|  |  |  |             fprintf(stderr, "wlan LED %s.\n", level ? "on" : "off"); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |             fprintf(stderr, "Uhandled out event: %d = %d\n", line, level); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-28 14:12:31 +01:00
										 |  |  | static void tosa_reset(void *opaque, int line, int level) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (level) { | 
					
						
							| 
									
										
										
										
											2017-05-15 16:41:13 -05:00
										 |  |  |         qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET); | 
					
						
							| 
									
										
										
										
											2016-10-28 14:12:31 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  | static void tosa_gpio_setup(PXA2xxState *cpu, | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |                 DeviceState *scp0, | 
					
						
							|  |  |  |                 DeviceState *scp1, | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  |                 TC6393xbState *tmio) | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-11-04 08:43:54 +00:00
										 |  |  |     qemu_irq *outsignals = qemu_allocate_irqs(tosa_out_switch, cpu, 4); | 
					
						
							| 
									
										
										
										
											2016-10-28 14:12:31 +01:00
										 |  |  |     qemu_irq reset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  |     /* MMC/SD host */ | 
					
						
							|  |  |  |     pxa2xx_mmci_handlers(cpu->mmc, | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |                     qdev_get_gpio_in(scp0, TOSA_GPIO_SD_WP), | 
					
						
							| 
									
										
										
										
											2011-01-21 19:57:50 +03:00
										 |  |  |                     qemu_irq_invert(qdev_get_gpio_in(cpu->gpio, TOSA_GPIO_nSD_DETECT))); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Handle reset */ | 
					
						
							| 
									
										
										
										
											2016-10-28 14:12:31 +01:00
										 |  |  |     reset = qemu_allocate_irq(tosa_reset, cpu, 0); | 
					
						
							|  |  |  |     qdev_connect_gpio_out(cpu->gpio, TOSA_GPIO_ON_RESET, reset); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* PCMCIA signals: card's IRQ and Card-Detect */ | 
					
						
							|  |  |  |     pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[0], | 
					
						
							| 
									
										
										
										
											2011-01-21 19:57:50 +03:00
										 |  |  |                         qdev_get_gpio_in(cpu->gpio, TOSA_GPIO_CF_IRQ), | 
					
						
							|  |  |  |                         qdev_get_gpio_in(cpu->gpio, TOSA_GPIO_CF_CD)); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pxa2xx_pcmcia_set_irq_cb(cpu->pcmcia[1], | 
					
						
							| 
									
										
										
										
											2011-01-21 19:57:50 +03:00
										 |  |  |                         qdev_get_gpio_in(cpu->gpio, TOSA_GPIO_JC_CF_IRQ), | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  |                         NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |     qdev_connect_gpio_out(scp1, TOSA_GPIO_BT_LED, outsignals[0]); | 
					
						
							|  |  |  |     qdev_connect_gpio_out(scp1, TOSA_GPIO_NOTE_LED, outsignals[1]); | 
					
						
							|  |  |  |     qdev_connect_gpio_out(scp1, TOSA_GPIO_CHRG_ERR_LED, outsignals[2]); | 
					
						
							|  |  |  |     qdev_connect_gpio_out(scp1, TOSA_GPIO_WLAN_LED, outsignals[3]); | 
					
						
							| 
									
										
										
										
											2008-11-04 09:04:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |     qdev_connect_gpio_out(scp1, TOSA_GPIO_TC6393XB_L3V_ON, tc6393xb_l3v_get(tmio)); | 
					
						
							| 
									
										
										
										
											2011-02-11 23:57:37 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* UDC Vbus */ | 
					
						
							|  |  |  |     qemu_irq_raise(qdev_get_gpio_in(cpu->gpio, TOSA_GPIO_USB_IN)); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:09 +01:00
										 |  |  | static uint32_t tosa_ssp_tansfer(SSISlave *dev, uint32_t value) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:09 +01:00
										 |  |  |     fprintf(stderr, "TG: %d %02x\n", value >> 5, value & 0x1f); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-04 13:06:37 +01:00
										 |  |  | static void tosa_ssp_realize(SSISlave *dev, Error **errp) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:09 +01:00
										 |  |  |     /* Nothing to do.  */ | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  | #define TYPE_TOSA_DAC "tosa_dac"
 | 
					
						
							|  |  |  | #define TOSA_DAC(obj) OBJECT_CHECK(TosaDACState, (obj), TYPE_TOSA_DAC)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-12 15:38:55 +01:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  |     I2CSlave parent_obj; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |     int len; | 
					
						
							|  |  |  |     char buf[3]; | 
					
						
							| 
									
										
										
										
											2009-05-12 15:38:55 +01:00
										 |  |  | } TosaDACState; | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:28:27 -06:00
										 |  |  | static int tosa_dac_send(I2CSlave *i2c, uint8_t data) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  |     TosaDACState *s = TOSA_DAC(i2c); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |     s->buf[s->len] = data; | 
					
						
							|  |  |  |     if (s->len ++ > 2) { | 
					
						
							|  |  |  | #ifdef VERBOSE
 | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |         fprintf(stderr, "%s: message too long (%i bytes)\n", __func__, s->len); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         return 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (s->len == 2) { | 
					
						
							|  |  |  |         fprintf(stderr, "dac: channel %d value 0x%02x\n", | 
					
						
							|  |  |  |                 s->buf[0], s->buf[1]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  | static int tosa_dac_event(I2CSlave *i2c, enum i2c_event event) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  |     TosaDACState *s = TOSA_DAC(i2c); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |     s->len = 0; | 
					
						
							|  |  |  |     switch (event) { | 
					
						
							|  |  |  |     case I2C_START_SEND: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case I2C_START_RECV: | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |         printf("%s: recv not supported!!!\n", __func__); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case I2C_FINISH: | 
					
						
							|  |  |  | #ifdef VERBOSE
 | 
					
						
							|  |  |  |         if (s->len < 2) | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |             printf("%s: message too short (%i bytes)\n", __func__, s->len); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  |         if (s->len > 2) | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |             printf("%s: message too long\n", __func__); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-09 11:40:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-14 11:50:50 -06:00
										 |  |  | static uint8_t tosa_dac_recv(I2CSlave *s) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-08 14:56:31 -08:00
										 |  |  |     printf("%s: recv not supported!!!\n", __func__); | 
					
						
							| 
									
										
										
										
											2018-11-14 11:50:50 -06:00
										 |  |  |     return 0xff; | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  | static void tosa_tg_init(PXA2xxState *cpu) | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-08-03 00:18:51 +02:00
										 |  |  |     I2CBus *bus = pxa2xx_i2c_bus(cpu->i2c[0]); | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  |     i2c_create_slave(bus, TYPE_TOSA_DAC, DAC_BASE); | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:09 +01:00
										 |  |  |     ssi_create_slave(cpu->ssp[1], "tosa-ssp"); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | static struct arm_boot_info tosa_binfo = { | 
					
						
							|  |  |  |     .loader_start = PXA2XX_SDRAM_BASE, | 
					
						
							|  |  |  |     .ram_size = 0x04000000, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-07 17:42:57 +03:00
										 |  |  | static void tosa_init(MachineState *machine) | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-11 16:07:19 -07:00
										 |  |  |     MemoryRegion *address_space_mem = get_system_memory(); | 
					
						
							| 
									
										
										
										
											2011-10-05 18:29:06 +02:00
										 |  |  |     MemoryRegion *rom = g_new(MemoryRegion, 1); | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |     PXA2xxState *mpu; | 
					
						
							| 
									
										
										
										
											2009-05-10 01:44:56 +01:00
										 |  |  |     TC6393xbState *tmio; | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |     DeviceState *scp0, *scp1; | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |     mpu = pxa255_init(address_space_mem, tosa_binfo.ram_size); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-07 15:42:53 +01:00
										 |  |  |     memory_region_init_ram(rom, NULL, "tosa.rom", TOSA_ROM, &error_fatal); | 
					
						
							| 
									
										
										
										
											2011-10-05 18:29:06 +02:00
										 |  |  |     memory_region_set_readonly(rom, true); | 
					
						
							|  |  |  |     memory_region_add_subregion(address_space_mem, 0, rom); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-03 14:42:42 +02:00
										 |  |  |     tmio = tc6393xb_init(address_space_mem, 0x10000000, | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |             qdev_get_gpio_in(mpu->gpio, TOSA_GPIO_TC6393XB_INT)); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-20 18:52:27 +03:00
										 |  |  |     scp0 = sysbus_create_simple("scoop", 0x08800000, NULL); | 
					
						
							|  |  |  |     scp1 = sysbus_create_simple("scoop", 0x14800040, NULL); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |     tosa_gpio_setup(mpu, scp0, scp1, tmio); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |     tosa_microdrive_attach(mpu); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-14 01:24:05 +02:00
										 |  |  |     tosa_tg_init(mpu); | 
					
						
							| 
									
										
										
										
											2008-11-04 08:54:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  |     tosa_binfo.board_id = 0x208; | 
					
						
							| 
									
										
										
										
											2019-08-09 14:57:21 +08:00
										 |  |  |     arm_load_kernel(mpu->cpu, machine, &tosa_binfo); | 
					
						
							| 
									
										
										
										
											2009-04-09 17:48:30 +00:00
										 |  |  |     sl_bootparam_write(SL_PXA_PARAM_BASE); | 
					
						
							| 
									
										
										
										
											2008-06-02 01:33:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  | static void tosapda_machine_init(MachineClass *mc) | 
					
						
							| 
									
										
										
										
											2009-05-20 18:38:09 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-10-16 11:14:53 +01:00
										 |  |  |     mc->desc = "Sharp SL-6000 (Tosa) PDA (PXA255)"; | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  |     mc->init = tosa_init; | 
					
						
							| 
									
										
										
										
											2017-02-15 11:05:40 +01:00
										 |  |  |     mc->block_default_type = IF_IDE; | 
					
						
							| 
									
										
										
										
											2017-09-07 13:54:54 +01:00
										 |  |  |     mc->ignore_memory_transaction_failures = true; | 
					
						
							| 
									
										
										
										
											2009-05-20 18:38:09 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 15:37:08 -03:00
										 |  |  | DEFINE_MACHINE("tosa", tosapda_machine_init) | 
					
						
							| 
									
										
										
										
											2009-05-20 18:38:09 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-04 20:39:20 -06:00
										 |  |  | static void tosa_dac_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     I2CSlaveClass *k = I2C_SLAVE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     k->event = tosa_dac_event; | 
					
						
							|  |  |  |     k->recv = tosa_dac_recv; | 
					
						
							|  |  |  |     k->send = tosa_dac_send; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo tosa_dac_info = { | 
					
						
							| 
									
										
										
										
											2013-12-19 21:51:29 +01:00
										 |  |  |     .name          = TYPE_TOSA_DAC, | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .parent        = TYPE_I2C_SLAVE, | 
					
						
							|  |  |  |     .instance_size = sizeof(TosaDACState), | 
					
						
							|  |  |  |     .class_init    = tosa_dac_class_init, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-12-16 13:36:39 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void tosa_ssp_class_init(ObjectClass *klass, void *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     SSISlaveClass *k = SSI_SLAVE_CLASS(klass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-04 13:06:37 +01:00
										 |  |  |     k->realize = tosa_ssp_realize; | 
					
						
							| 
									
										
										
										
											2011-12-16 13:36:39 -06:00
										 |  |  |     k->transfer = tosa_ssp_tansfer; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 16:19:07 +01:00
										 |  |  | static const TypeInfo tosa_ssp_info = { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     .name          = "tosa-ssp", | 
					
						
							|  |  |  |     .parent        = TYPE_SSI_SLAVE, | 
					
						
							|  |  |  |     .instance_size = sizeof(SSISlave), | 
					
						
							|  |  |  |     .class_init    = tosa_ssp_class_init, | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:09 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | static void tosa_register_types(void) | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-07 21:34:16 -06:00
										 |  |  |     type_register_static(&tosa_dac_info); | 
					
						
							|  |  |  |     type_register_static(&tosa_ssp_info); | 
					
						
							| 
									
										
										
										
											2009-05-14 22:35:08 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 15:20:55 +01:00
										 |  |  | type_init(tosa_register_types) |