mirror of
https://github.com/qemu/qemu.git
synced 2024-11-29 14:53:35 +08:00
a4a771c055
This patch adds emulation for a CompactFlash on sh4/r2d board. The device is CF, but wired to be worked as True-IDE mode, and connected directly to SH bus. So, this code is to support generally mmio based IDEs which are supported by "pata_platform" driver in linux kernel. Signed-off-by: Takashi YOSHII <takasi-y@ops.dti.ne.jp> Signed-off-by: Andrzej Zaborowski <andrew.zaborowski@intel.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5924 c046a42c-6fe2-441c-8c8c-71466251a162
53 lines
1.5 KiB
C
53 lines
1.5 KiB
C
#ifndef QEMU_SH_H
|
|
#define QEMU_SH_H
|
|
/* Definitions for SH board emulation. */
|
|
|
|
#include "sh_intc.h"
|
|
|
|
/* sh7750.c */
|
|
struct SH7750State;
|
|
|
|
struct SH7750State *sh7750_init(CPUState * cpu);
|
|
|
|
typedef struct {
|
|
/* The callback will be triggered if any of the designated lines change */
|
|
uint16_t portamask_trigger;
|
|
uint16_t portbmask_trigger;
|
|
/* Return 0 if no action was taken */
|
|
int (*port_change_cb) (uint16_t porta, uint16_t portb,
|
|
uint16_t * periph_pdtra,
|
|
uint16_t * periph_portdira,
|
|
uint16_t * periph_pdtrb,
|
|
uint16_t * periph_portdirb);
|
|
} sh7750_io_device;
|
|
|
|
int sh7750_register_io_device(struct SH7750State *s,
|
|
sh7750_io_device * device);
|
|
/* sh_timer.c */
|
|
#define TMU012_FEAT_TOCR (1 << 0)
|
|
#define TMU012_FEAT_3CHAN (1 << 1)
|
|
#define TMU012_FEAT_EXTCLK (1 << 2)
|
|
void tmu012_init(target_phys_addr_t base, int feat, uint32_t freq,
|
|
qemu_irq ch0_irq, qemu_irq ch1_irq,
|
|
qemu_irq ch2_irq0, qemu_irq ch2_irq1);
|
|
|
|
|
|
/* sh_serial.c */
|
|
#define SH_SERIAL_FEAT_SCIF (1 << 0)
|
|
void sh_serial_init (target_phys_addr_t base, int feat,
|
|
uint32_t freq, CharDriverState *chr,
|
|
qemu_irq eri_source,
|
|
qemu_irq rxi_source,
|
|
qemu_irq txi_source,
|
|
qemu_irq tei_source,
|
|
qemu_irq bri_source);
|
|
|
|
/* tc58128.c */
|
|
int tc58128_init(struct SH7750State *s, const char *zone1, const char *zone2);
|
|
|
|
/* ide.c */
|
|
void mmio_ide_init(target_phys_addr_t membase, target_phys_addr_t membase2,
|
|
qemu_irq irq, int shift,
|
|
BlockDriverState *hd0, BlockDriverState *hd1);
|
|
#endif
|