]> git.proxmox.com Git - qemu.git/commitdiff
SHIX board emulation (Samuel Tardieu)
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 27 Apr 2006 21:32:09 +0000 (21:32 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Thu, 27 Apr 2006 21:32:09 +0000 (21:32 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1862 c046a42c-6fe2-441c-8c8c-71466251a162

Changelog
Makefile.target
hw/sh7750.c [new file with mode: 0644]
hw/sh7750_regnames.c [new file with mode: 0644]
hw/sh7750_regnames.h [new file with mode: 0644]
hw/sh7750_regs.h [new file with mode: 0644]
hw/shix.c [new file with mode: 0644]
hw/tc58128.c [new file with mode: 0644]
target-sh4/README.sh4 [new file with mode: 0644]
vl.c
vl.h

index fb28ee0c1c30ea46a58c5c8e23f7e6f2d9cfcf52..d6f34fea5511f42a2380fc65298bf510708fd5e0 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -6,6 +6,7 @@ version 0.8.1:
   - IDE LBA48 support (Jens Axboe)
   - SSE3 support
   - Solaris port (Ben Taylor)
+  - Preliminary SH4 target (Samuel Tardieu)
 
 version 0.8.0:
 
index 6c2bd35cd0ce50b15af03340d0608003b12db4e3..751edc858b274ec659915abee5cce6c852f81606 100644 (file)
@@ -476,10 +476,10 @@ ifeq ($(TARGET_ARCH), sh4)
 op.o: op.c op_mem.c cpu.h
 op_helper.o: op_helper.c exec.h cpu.h
 helper.o: helper.c exec.h cpu.h
-sh7750.o: sh7750.c sh7750.h sh7750_regs.h sh7750_regnames.h cpu.h
-shix.o: shix.c sh7750.h sh7750_regs.h sh7750_regnames.h tc58128.h
+sh7750.o: sh7750.c sh7750_regs.h sh7750_regnames.h cpu.h
+shix.o: shix.c sh7750_regs.h sh7750_regnames.h
 sh7750_regnames.o: sh7750_regnames.c sh7750_regnames.h sh7750_regs.h
-tc58128.o: tc58128.c tc58128.h sh7750.h
+tc58128.o: tc58128.c
 endif
 
 %.o: %.c
diff --git a/hw/sh7750.c b/hw/sh7750.c
new file mode 100644 (file)
index 0000000..041e3ee
--- /dev/null
@@ -0,0 +1,836 @@
+/*
+ * SH7750 device
+ * 
+ * Copyright (c) 2005 Samuel Tardieu
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+#include <stdio.h>
+#include <assert.h>
+#include "vl.h"
+#include "sh7750_regs.h"
+#include "sh7750_regnames.h"
+
+typedef struct {
+    uint8_t data[16];
+    uint8_t length;            /* Number of characters in the FIFO */
+    uint8_t write_idx;         /* Index of first character to write */
+    uint8_t read_idx;          /* Index of first character to read */
+} fifo;
+
+#define NB_DEVICES 4
+
+typedef struct SH7750State {
+    /* CPU */
+    CPUSH4State *cpu;
+    /* Peripheral frequency in Hz */
+    uint32_t periph_freq;
+    /* SDRAM controller */
+    uint16_t rfcr;
+    /* First serial port */
+    CharDriverState *serial1;
+    uint8_t scscr1;
+    uint8_t scsmr1;
+    uint8_t scbrr1;
+    uint8_t scssr1;
+    uint8_t scssr1_read;
+    uint8_t sctsr1;
+    uint8_t sctsr1_loaded;
+    uint8_t sctdr1;
+    uint8_t scrdr1;
+    /* Second serial port */
+    CharDriverState *serial2;
+    uint16_t sclsr2;
+    uint16_t scscr2;
+    uint16_t scfcr2;
+    uint16_t scfsr2;
+    uint16_t scsmr2;
+    uint8_t scbrr2;
+    fifo serial2_receive_fifo;
+    fifo serial2_transmit_fifo;
+    /* Timers */
+    uint8_t tstr;
+    /* Timer 0 */
+    QEMUTimer *timer0;
+    uint16_t tcr0;
+    uint32_t tcor0;
+    uint32_t tcnt0;
+    /* IO ports */
+    uint16_t gpioic;
+    uint32_t pctra;
+    uint32_t pctrb;
+    uint16_t portdira;         /* Cached */
+    uint16_t portpullupa;      /* Cached */
+    uint16_t portdirb;         /* Cached */
+    uint16_t portpullupb;      /* Cached */
+    uint16_t pdtra;
+    uint16_t pdtrb;
+    uint16_t periph_pdtra;     /* Imposed by the peripherals */
+    uint16_t periph_portdira;  /* Direction seen from the peripherals */
+    uint16_t periph_pdtrb;     /* Imposed by the peripherals */
+    uint16_t periph_portdirb;  /* Direction seen from the peripherals */
+    sh7750_io_device *devices[NB_DEVICES];     /* External peripherals */
+    /* Cache */
+    uint32_t ccr;
+} SH7750State;
+
+/**********************************************************************
+ Timers
+**********************************************************************/
+
+/* XXXXX At this time, timer0 works in underflow only mode, that is
+   the value of tcnt0 is read at alarm computation time and cannot
+   be read back by the guest OS */
+
+static void start_timer0(SH7750State * s)
+{
+    uint64_t now, next, prescaler;
+
+    if ((s->tcr0 & 6) == 6) {
+       fprintf(stderr, "rtc clock for timer 0 not supported\n");
+       assert(0);
+    }
+
+    if ((s->tcr0 & 7) == 5) {
+       fprintf(stderr, "timer 0 configuration not supported\n");
+       assert(0);
+    }
+
+    if ((s->tcr0 & 4) == 4)
+       prescaler = 1024;
+    else
+       prescaler = 4 << (s->tcr0 & 3);
+
+    now = qemu_get_clock(vm_clock);
+    /* XXXXX */
+    next =
+       now + muldiv64(prescaler * s->tcnt0, ticks_per_sec,
+                      s->periph_freq);
+    if (next == now)
+       next = now + 1;
+    fprintf(stderr, "now=%016llx, next=%016llx\n", now, next);
+    fprintf(stderr, "timer will underflow in %f seconds\n",
+           (float) (next - now) / (float) ticks_per_sec);
+
+    qemu_mod_timer(s->timer0, next);
+}
+
+static void timer_start_changed(SH7750State * s)
+{
+    if (s->tstr & SH7750_TSTR_STR0) {
+       start_timer0(s);
+    } else {
+       fprintf(stderr, "timer 0 is stopped\n");
+       qemu_del_timer(s->timer0);
+    }
+}
+
+static void timer0_cb(void *opaque)
+{
+    SH7750State *s = opaque;
+
+    s->tcnt0 = (uint32_t) 0;   /* XXXXX */
+    if (--s->tcnt0 == (uint32_t) - 1) {
+       fprintf(stderr, "timer 0 underflow\n");
+       s->tcnt0 = s->tcor0;
+       s->tcr0 |= SH7750_TCR_UNF;
+       if (s->tcr0 & SH7750_TCR_UNIE) {
+           fprintf(stderr,
+                   "interrupt generation for timer 0 not supported\n");
+           assert(0);
+       }
+    }
+    start_timer0(s);
+}
+
+static void init_timers(SH7750State * s)
+{
+    s->tcor0 = 0xffffffff;
+    s->tcnt0 = 0xffffffff;
+    s->timer0 = qemu_new_timer(vm_clock, &timer0_cb, s);
+}
+
+/**********************************************************************
+ First serial port
+**********************************************************************/
+
+static int serial1_can_receive(void *opaque)
+{
+    SH7750State *s = opaque;
+
+    return s->scscr1 & SH7750_SCSCR_RE;
+}
+
+static void serial1_receive_char(SH7750State * s, uint8_t c)
+{
+    if (s->scssr1 & SH7750_SCSSR1_RDRF) {
+       s->scssr1 |= SH7750_SCSSR1_ORER;
+       return;
+    }
+
+    s->scrdr1 = c;
+    s->scssr1 |= SH7750_SCSSR1_RDRF;
+}
+
+static void serial1_receive(void *opaque, const uint8_t * buf, int size)
+{
+    SH7750State *s = opaque;
+    int i;
+
+    for (i = 0; i < size; i++) {
+       serial1_receive_char(s, buf[i]);
+    }
+}
+
+static void serial1_event(void *opaque, int event)
+{
+    assert(0);
+}
+
+static void serial1_maybe_send(SH7750State * s)
+{
+    uint8_t c;
+
+    if (s->scssr1 & SH7750_SCSSR1_TDRE)
+       return;
+    c = s->sctdr1;
+    s->scssr1 |= SH7750_SCSSR1_TDRE | SH7750_SCSSR1_TEND;
+    if (s->scscr1 & SH7750_SCSCR_TIE) {
+       fprintf(stderr, "interrupts for serial port 1 not implemented\n");
+       assert(0);
+    }
+    /* XXXXX Check for errors in write */
+    qemu_chr_write(s->serial1, &c, 1);
+}
+
+static void serial1_change_scssr1(SH7750State * s, uint8_t mem_value)
+{
+    uint8_t new_flags;
+
+    /* If transmit disable, TDRE and TEND stays up */
+    if ((s->scscr1 & SH7750_SCSCR_TE) == 0) {
+       mem_value |= SH7750_SCSSR1_TDRE | SH7750_SCSSR1_TEND;
+    }
+
+    /* Only clear bits which have been read before and do not set any bit
+       in the flags */
+    new_flags = s->scssr1 & ~s->scssr1_read;   /* Preserve unread flags */
+    new_flags &= mem_value | ~s->scssr1_read;  /* Clear read flags */
+
+    s->scssr1 = (new_flags & 0xf8) | (mem_value & 1);
+    s->scssr1_read &= mem_value;
+
+    /* If TDRE has been cleared, TEND will also be cleared */
+    if ((s->scssr1 & SH7750_SCSSR1_TDRE) == 0) {
+       s->scssr1 &= ~SH7750_SCSSR1_TEND;
+    }
+
+    /* Check for transmission to start */
+    serial1_maybe_send(s);
+}
+
+static void serial1_update_parameters(SH7750State * s)
+{
+    QEMUSerialSetParams ssp;
+
+    if (s->scsmr1 & SH7750_SCSMR_CHR_7)
+       ssp.data_bits = 7;
+    else
+       ssp.data_bits = 8;
+    if (s->scsmr1 & SH7750_SCSMR_PE) {
+       if (s->scsmr1 & SH7750_SCSMR_PM_ODD)
+           ssp.parity = 'O';
+       else
+           ssp.parity = 'E';
+    } else
+       ssp.parity = 'N';
+    if (s->scsmr1 & SH7750_SCSMR_STOP_2)
+       ssp.stop_bits = 2;
+    else
+       ssp.stop_bits = 1;
+    fprintf(stderr, "SCSMR1=%04x SCBRR1=%02x\n", s->scsmr1, s->scbrr1);
+    ssp.speed = s->periph_freq /
+       (32 * s->scbrr1 * (1 << (2 * (s->scsmr1 & 3)))) - 1;
+    fprintf(stderr, "data bits=%d, stop bits=%d, parity=%c, speed=%d\n",
+           ssp.data_bits, ssp.stop_bits, ssp.parity, ssp.speed);
+    qemu_chr_ioctl(s->serial1, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
+}
+
+static void scscr1_changed(SH7750State * s)
+{
+    if (s->scscr1 & (SH7750_SCSCR_TE | SH7750_SCSCR_RE)) {
+       if (!s->serial1) {
+           fprintf(stderr, "serial port 1 not bound to anything\n");
+           assert(0);
+       }
+       serial1_update_parameters(s);
+    }
+    if ((s->scscr1 & SH7750_SCSCR_RE) == 0) {
+       s->scssr1 |= SH7750_SCSSR1_TDRE;
+    }
+}
+
+static void init_serial1(SH7750State * s, int serial_nb)
+{
+    CharDriverState *chr;
+
+    s->scssr1 = 0x84;
+    chr = serial_hds[serial_nb];
+    if (!chr) {
+       fprintf(stderr,
+               "no serial port associated to SH7750 first serial port\n");
+       return;
+    }
+
+    s->serial1 = chr;
+    qemu_chr_add_read_handler(chr, serial1_can_receive,
+                             serial1_receive, s);
+    qemu_chr_add_event_handler(chr, serial1_event);
+}
+
+/**********************************************************************
+ Second serial port
+**********************************************************************/
+
+static int serial2_can_receive(void *opaque)
+{
+    SH7750State *s = opaque;
+    static uint8_t max_fifo_size[] = { 15, 1, 4, 6, 8, 10, 12, 14 };
+
+    return s->serial2_receive_fifo.length <
+       max_fifo_size[(s->scfcr2 >> 9) & 7];
+}
+
+static void serial2_adjust_receive_flags(SH7750State * s)
+{
+    static uint8_t max_fifo_size[] = { 1, 4, 8, 14 };
+
+    /* XXXXX Add interrupt generation */
+    if (s->serial2_receive_fifo.length >=
+       max_fifo_size[(s->scfcr2 >> 7) & 3]) {
+       s->scfsr2 |= SH7750_SCFSR2_RDF;
+       s->scfsr2 &= ~SH7750_SCFSR2_DR;
+    } else {
+       s->scfsr2 &= ~SH7750_SCFSR2_RDF;
+       if (s->serial2_receive_fifo.length > 0)
+           s->scfsr2 |= SH7750_SCFSR2_DR;
+       else
+           s->scfsr2 &= ~SH7750_SCFSR2_DR;
+    }
+}
+
+static void serial2_append_char(SH7750State * s, uint8_t c)
+{
+    if (s->serial2_receive_fifo.length == 16) {
+       /* Overflow */
+       s->sclsr2 |= SH7750_SCLSR2_ORER;
+       return;
+    }
+
+    s->serial2_receive_fifo.data[s->serial2_receive_fifo.write_idx++] = c;
+    s->serial2_receive_fifo.length++;
+    serial2_adjust_receive_flags(s);
+}
+
+static void serial2_receive(void *opaque, const uint8_t * buf, int size)
+{
+    SH7750State *s = opaque;
+    int i;
+
+    for (i = 0; i < size; i++)
+       serial2_append_char(s, buf[i]);
+}
+
+static void serial2_event(void *opaque, int event)
+{
+    /* XXXXX */
+    assert(0);
+}
+
+static void serial2_update_parameters(SH7750State * s)
+{
+    QEMUSerialSetParams ssp;
+
+    if (s->scsmr2 & SH7750_SCSMR_CHR_7)
+       ssp.data_bits = 7;
+    else
+       ssp.data_bits = 8;
+    if (s->scsmr2 & SH7750_SCSMR_PE) {
+       if (s->scsmr2 & SH7750_SCSMR_PM_ODD)
+           ssp.parity = 'O';
+       else
+           ssp.parity = 'E';
+    } else
+       ssp.parity = 'N';
+    if (s->scsmr2 & SH7750_SCSMR_STOP_2)
+       ssp.stop_bits = 2;
+    else
+       ssp.stop_bits = 1;
+    fprintf(stderr, "SCSMR2=%04x SCBRR2=%02x\n", s->scsmr2, s->scbrr2);
+    ssp.speed = s->periph_freq /
+       (32 * s->scbrr2 * (1 << (2 * (s->scsmr2 & 3)))) - 1;
+    fprintf(stderr, "data bits=%d, stop bits=%d, parity=%c, speed=%d\n",
+           ssp.data_bits, ssp.stop_bits, ssp.parity, ssp.speed);
+    qemu_chr_ioctl(s->serial2, CHR_IOCTL_SERIAL_SET_PARAMS, &ssp);
+}
+
+static void scscr2_changed(SH7750State * s)
+{
+    if (s->scscr2 & (SH7750_SCSCR_TE | SH7750_SCSCR_RE)) {
+       if (!s->serial2) {
+           fprintf(stderr, "serial port 2 not bound to anything\n");
+           assert(0);
+       }
+       serial2_update_parameters(s);
+    }
+}
+
+static void init_serial2(SH7750State * s, int serial_nb)
+{
+    CharDriverState *chr;
+
+    s->scfsr2 = 0x0060;
+
+    chr = serial_hds[serial_nb];
+    if (!chr) {
+       fprintf(stderr,
+               "no serial port associated to SH7750 second serial port\n");
+       return;
+    }
+
+    s->serial2 = chr;
+    qemu_chr_add_read_handler(chr, serial2_can_receive,
+                             serial2_receive, s);
+    qemu_chr_add_event_handler(chr, serial2_event);
+}
+
+static void init_serial_ports(SH7750State * s)
+{
+    init_serial1(s, 0);
+    init_serial2(s, 1);
+}
+
+/**********************************************************************
+ I/O ports
+**********************************************************************/
+
+int sh7750_register_io_device(SH7750State * s, sh7750_io_device * device)
+{
+    int i;
+
+    for (i = 0; i < NB_DEVICES; i++) {
+       if (s->devices[i] == NULL) {
+           s->devices[i] = device;
+           return 0;
+       }
+    }
+    return -1;
+}
+
+static uint16_t portdir(uint32_t v)
+{
+#define EVENPORTMASK(n) ((v & (1<<((n)<<1))) >> (n))
+    return
+       EVENPORTMASK(15) | EVENPORTMASK(14) | EVENPORTMASK(13) |
+       EVENPORTMASK(12) | EVENPORTMASK(11) | EVENPORTMASK(10) |
+       EVENPORTMASK(9) | EVENPORTMASK(8) | EVENPORTMASK(7) |
+       EVENPORTMASK(6) | EVENPORTMASK(5) | EVENPORTMASK(4) |
+       EVENPORTMASK(3) | EVENPORTMASK(2) | EVENPORTMASK(1) |
+       EVENPORTMASK(0);
+}
+
+static uint16_t portpullup(uint32_t v)
+{
+#define ODDPORTMASK(n) ((v & (1<<(((n)<<1)+1))) >> (n))
+    return
+       ODDPORTMASK(15) | ODDPORTMASK(14) | ODDPORTMASK(13) |
+       ODDPORTMASK(12) | ODDPORTMASK(11) | ODDPORTMASK(10) |
+       ODDPORTMASK(9) | ODDPORTMASK(8) | ODDPORTMASK(7) | ODDPORTMASK(6) |
+       ODDPORTMASK(5) | ODDPORTMASK(4) | ODDPORTMASK(3) | ODDPORTMASK(2) |
+       ODDPORTMASK(1) | ODDPORTMASK(0);
+}
+
+static uint16_t porta_lines(SH7750State * s)
+{
+    return (s->portdira & s->pdtra) |  /* CPU */
+       (s->periph_portdira & s->periph_pdtra) |        /* Peripherals */
+       (~(s->portdira | s->periph_portdira) & s->portpullupa); /* Pullups */
+}
+
+static uint16_t portb_lines(SH7750State * s)
+{
+    return (s->portdirb & s->pdtrb) |  /* CPU */
+       (s->periph_portdirb & s->periph_pdtrb) |        /* Peripherals */
+       (~(s->portdirb | s->periph_portdirb) & s->portpullupb); /* Pullups */
+}
+
+static void gen_port_interrupts(SH7750State * s)
+{
+    /* XXXXX interrupts not generated */
+}
+
+static void porta_changed(SH7750State * s, uint16_t prev)
+{
+    uint16_t currenta, changes;
+    int i, r = 0;
+
+#if 0
+    fprintf(stderr, "porta changed from 0x%04x to 0x%04x\n",
+           prev, porta_lines(s));
+    fprintf(stderr, "pdtra=0x%04x, pctra=0x%08x\n", s->pdtra, s->pctra);
+#endif
+    currenta = porta_lines(s);
+    if (currenta == prev)
+       return;
+    changes = currenta ^ prev;
+
+    for (i = 0; i < NB_DEVICES; i++) {
+       if (s->devices[i] && (s->devices[i]->portamask_trigger & changes)) {
+           r |= s->devices[i]->port_change_cb(currenta, portb_lines(s),
+                                              &s->periph_pdtra,
+                                              &s->periph_portdira,
+                                              &s->periph_pdtrb,
+                                              &s->periph_portdirb);
+       }
+    }
+
+    if (r)
+       gen_port_interrupts(s);
+}
+
+static void portb_changed(SH7750State * s, uint16_t prev)
+{
+    uint16_t currentb, changes;
+    int i, r = 0;
+
+    currentb = portb_lines(s);
+    if (currentb == prev)
+       return;
+    changes = currentb ^ prev;
+
+    for (i = 0; i < NB_DEVICES; i++) {
+       if (s->devices[i] && (s->devices[i]->portbmask_trigger & changes)) {
+           r |= s->devices[i]->port_change_cb(portb_lines(s), currentb,
+                                              &s->periph_pdtra,
+                                              &s->periph_portdira,
+                                              &s->periph_pdtrb,
+                                              &s->periph_portdirb);
+       }
+    }
+
+    if (r)
+       gen_port_interrupts(s);
+}
+
+/**********************************************************************
+ Memory
+**********************************************************************/
+
+static void error_access(const char *kind, target_phys_addr_t addr)
+{
+    fprintf(stderr, "%s to %s (0x%08x) not supported\n",
+           kind, regname(addr), addr);
+}
+
+static void ignore_access(const char *kind, target_phys_addr_t addr)
+{
+    fprintf(stderr, "%s to %s (0x%08x) ignored\n",
+           kind, regname(addr), addr);
+}
+
+static uint32_t sh7750_mem_readb(void *opaque, target_phys_addr_t addr)
+{
+    SH7750State *s = opaque;
+    uint8_t r;
+
+    switch (addr) {
+    case SH7750_SCSSR1_A7:
+       r = s->scssr1;
+       s->scssr1_read |= r;
+       return s->scssr1;
+    case SH7750_SCRDR1_A7:
+       s->scssr1 &= ~SH7750_SCSSR1_RDRF;
+       return s->scrdr1;
+    default:
+       error_access("byte read", addr);
+       assert(0);
+    }
+}
+
+static uint32_t sh7750_mem_readw(void *opaque, target_phys_addr_t addr)
+{
+    SH7750State *s = opaque;
+    uint16_t r;
+
+    switch (addr) {
+    case SH7750_RFCR_A7:
+       fprintf(stderr,
+               "Read access to refresh count register, incrementing\n");
+       return s->rfcr++;
+    case SH7750_TCR0_A7:
+       return s->tcr0;
+    case SH7750_SCLSR2_A7:
+       /* Read and clear overflow bit */
+       r = s->sclsr2;
+       s->sclsr2 = 0;
+       return r;
+    case SH7750_SCSFR2_A7:
+       return s->scfsr2;
+    case SH7750_PDTRA_A7:
+       return porta_lines(s);
+    case SH7750_PDTRB_A7:
+       return portb_lines(s);
+    default:
+       error_access("word read", addr);
+       assert(0);
+    }
+}
+
+static uint32_t sh7750_mem_readl(void *opaque, target_phys_addr_t addr)
+{
+    SH7750State *s = opaque;
+
+    switch (addr) {
+    case SH7750_MMUCR_A7:
+       return s->cpu->mmucr;
+    case SH7750_PTEH_A7:
+       return s->cpu->pteh;
+    case SH7750_PTEL_A7:
+       return s->cpu->ptel;
+    case SH7750_TTB_A7:
+       return s->cpu->ttb;
+    case SH7750_TEA_A7:
+       return s->cpu->tea;
+    case SH7750_TRA_A7:
+       return s->cpu->tra;
+    case SH7750_EXPEVT_A7:
+       return s->cpu->expevt;
+    case SH7750_INTEVT_A7:
+       return s->cpu->intevt;
+    case SH7750_CCR_A7:
+       return s->ccr;
+    case 0x1f000030:           /* Processor version PVR */
+       return 0x00050000;      /* SH7750R */
+    case 0x1f000040:           /* Processor version CVR */
+       return 0x00110000;      /* Minimum caches */
+    case 0x1f000044:           /* Processor version PRR */
+       return 0x00000100;      /* SH7750R */
+    default:
+       error_access("long read", addr);
+       assert(0);
+    }
+}
+
+static void sh7750_mem_writeb(void *opaque, target_phys_addr_t addr,
+                             uint32_t mem_value)
+{
+    SH7750State *s = opaque;
+
+    switch (addr) {
+       /* PRECHARGE ? XXXXX */
+    case SH7750_PRECHARGE0_A7:
+    case SH7750_PRECHARGE1_A7:
+       ignore_access("byte write", addr);
+       return;
+    case SH7750_SCBRR2_A7:
+       s->scbrr2 = mem_value;
+       return;
+    case SH7750_TSTR_A7:
+       s->tstr = mem_value;
+       timer_start_changed(s);
+       return;
+    case SH7750_SCSCR1_A7:
+       s->scscr1 = mem_value;
+       scscr1_changed(s);
+       return;
+    case SH7750_SCSMR1_A7:
+       s->scsmr1 = mem_value;
+       return;
+    case SH7750_SCBRR1_A7:
+       s->scbrr1 = mem_value;
+       return;
+    case SH7750_SCTDR1_A7:
+       s->scssr1 &= ~SH7750_SCSSR1_TEND;
+       s->sctdr1 = mem_value;
+       return;
+    case SH7750_SCSSR1_A7:
+       serial1_change_scssr1(s, mem_value);
+       return;
+    default:
+       error_access("byte write", addr);
+       assert(0);
+    }
+}
+
+static void sh7750_mem_writew(void *opaque, target_phys_addr_t addr,
+                             uint32_t mem_value)
+{
+    SH7750State *s = opaque;
+    uint16_t temp;
+
+    switch (addr) {
+       /* SDRAM controller */
+    case SH7750_SCBRR1_A7:
+    case SH7750_SCBRR2_A7:
+    case SH7750_BCR2_A7:
+    case SH7750_BCR3_A7:
+    case SH7750_RTCOR_A7:
+    case SH7750_RTCNT_A7:
+    case SH7750_RTCSR_A7:
+       ignore_access("word write", addr);
+       return;
+       /* IO ports */
+    case SH7750_PDTRA_A7:
+       temp = porta_lines(s);
+       s->pdtra = mem_value;
+       porta_changed(s, temp);
+       return;
+    case SH7750_PDTRB_A7:
+       temp = portb_lines(s);
+       s->pdtrb = mem_value;
+       portb_changed(s, temp);
+       return;
+    case SH7750_RFCR_A7:
+       fprintf(stderr, "Write access to refresh count register\n");
+       s->rfcr = mem_value;
+       return;
+    case SH7750_SCLSR2_A7:
+       s->sclsr2 = mem_value;
+       return;
+    case SH7750_SCSCR2_A7:
+       s->scscr2 = mem_value;
+       scscr2_changed(s);
+       return;
+    case SH7750_SCFCR2_A7:
+       s->scfcr2 = mem_value;
+       return;
+    case SH7750_SCSMR2_A7:
+       s->scsmr2 = mem_value;
+       return;
+    case SH7750_TCR0_A7:
+       s->tcr0 = mem_value;
+       return;
+    case SH7750_GPIOIC_A7:
+       s->gpioic = mem_value;
+       if (mem_value != 0) {
+           fprintf(stderr, "I/O interrupts not implemented\n");
+           assert(0);
+       }
+       return;
+    default:
+       error_access("word write", addr);
+       assert(0);
+    }
+}
+
+static void sh7750_mem_writel(void *opaque, target_phys_addr_t addr,
+                             uint32_t mem_value)
+{
+    SH7750State *s = opaque;
+    uint16_t temp;
+
+    switch (addr) {
+       /* SDRAM controller */
+    case SH7750_BCR1_A7:
+    case SH7750_BCR4_A7:
+    case SH7750_WCR1_A7:
+    case SH7750_WCR2_A7:
+    case SH7750_WCR3_A7:
+    case SH7750_MCR_A7:
+       ignore_access("long write", addr);
+       return;
+       /* IO ports */
+    case SH7750_PCTRA_A7:
+       temp = porta_lines(s);
+       s->pctra = mem_value;
+       s->portdira = portdir(mem_value);
+       s->portpullupa = portpullup(mem_value);
+       porta_changed(s, temp);
+       return;
+    case SH7750_PCTRB_A7:
+       temp = portb_lines(s);
+       s->pctrb = mem_value;
+       s->portdirb = portdir(mem_value);
+       s->portpullupb = portpullup(mem_value);
+       portb_changed(s, temp);
+       return;
+    case SH7750_TCNT0_A7:
+       s->tcnt0 = mem_value & 0xf;
+       return;
+    case SH7750_MMUCR_A7:
+       s->cpu->mmucr = mem_value;
+       return;
+    case SH7750_PTEH_A7:
+       s->cpu->pteh = mem_value;
+       return;
+    case SH7750_PTEL_A7:
+       s->cpu->ptel = mem_value;
+       return;
+    case SH7750_TTB_A7:
+       s->cpu->ttb = mem_value;
+       return;
+    case SH7750_TEA_A7:
+       s->cpu->tea = mem_value;
+       return;
+    case SH7750_TRA_A7:
+       s->cpu->tra = mem_value & 0x000007ff;
+       return;
+    case SH7750_EXPEVT_A7:
+       s->cpu->expevt = mem_value & 0x000007ff;
+       return;
+    case SH7750_INTEVT_A7:
+       s->cpu->intevt = mem_value & 0x000007ff;
+       return;
+    case SH7750_CCR_A7:
+       s->ccr = mem_value;
+       return;
+    default:
+       error_access("long write", addr);
+       assert(0);
+    }
+}
+
+static CPUReadMemoryFunc *sh7750_mem_read[] = {
+    sh7750_mem_readb,
+    sh7750_mem_readw,
+    sh7750_mem_readl
+};
+
+static CPUWriteMemoryFunc *sh7750_mem_write[] = {
+    sh7750_mem_writeb,
+    sh7750_mem_writew,
+    sh7750_mem_writel
+};
+
+SH7750State *sh7750_init(CPUSH4State * cpu)
+{
+    SH7750State *s;
+    int sh7750_io_memory;
+
+    s = qemu_mallocz(sizeof(SH7750State));
+    s->cpu = cpu;
+    s->periph_freq = 60000000; /* 60MHz */
+    sh7750_io_memory = cpu_register_io_memory(0,
+                                             sh7750_mem_read,
+                                             sh7750_mem_write, s);
+    cpu_register_physical_memory(0x1c000000, 0x04000000, sh7750_io_memory);
+    init_timers(s);
+    init_serial_ports(s);
+    return s;
+}
diff --git a/hw/sh7750_regnames.c b/hw/sh7750_regnames.c
new file mode 100644 (file)
index 0000000..5fcb0d6
--- /dev/null
@@ -0,0 +1,128 @@
+#include "vl.h"
+#include "sh7750_regs.h"
+
+#define REGNAME(r) {r, #r},
+
+typedef struct {
+    uint32_t regaddr;
+    const char *regname;
+} regname_t;
+
+static regname_t regnames[] = {
+    REGNAME(SH7750_PTEH_A7)
+       REGNAME(SH7750_PTEL_A7)
+       REGNAME(SH7750_PTEA_A7)
+       REGNAME(SH7750_TTB_A7)
+       REGNAME(SH7750_TEA_A7)
+       REGNAME(SH7750_MMUCR_A7)
+       REGNAME(SH7750_CCR_A7)
+       REGNAME(SH7750_QACR0_A7)
+       REGNAME(SH7750_QACR1_A7)
+       REGNAME(SH7750_TRA_A7)
+       REGNAME(SH7750_EXPEVT_A7)
+       REGNAME(SH7750_INTEVT_A7)
+       REGNAME(SH7750_STBCR_A7)
+       REGNAME(SH7750_STBCR2_A7)
+       REGNAME(SH7750_FRQCR_A7)
+       REGNAME(SH7750_WTCNT_A7)
+       REGNAME(SH7750_WTCSR_A7)
+       REGNAME(SH7750_R64CNT_A7)
+       REGNAME(SH7750_RSECCNT_A7)
+       REGNAME(SH7750_RMINCNT_A7)
+       REGNAME(SH7750_RHRCNT_A7)
+       REGNAME(SH7750_RWKCNT_A7)
+       REGNAME(SH7750_RDAYCNT_A7)
+       REGNAME(SH7750_RMONCNT_A7)
+       REGNAME(SH7750_RYRCNT_A7)
+       REGNAME(SH7750_RSECAR_A7)
+       REGNAME(SH7750_RMINAR_A7)
+       REGNAME(SH7750_RHRAR_A7)
+       REGNAME(SH7750_RWKAR_A7)
+       REGNAME(SH7750_RDAYAR_A7)
+       REGNAME(SH7750_RMONAR_A7)
+       REGNAME(SH7750_RCR1_A7)
+       REGNAME(SH7750_RCR2_A7)
+       REGNAME(SH7750_TOCR_A7)
+       REGNAME(SH7750_TSTR_A7)
+       REGNAME(SH7750_TCOR0_A7)
+       REGNAME(SH7750_TCOR1_A7)
+       REGNAME(SH7750_TCOR2_A7)
+       REGNAME(SH7750_TCNT0_A7)
+       REGNAME(SH7750_TCNT1_A7)
+       REGNAME(SH7750_TCNT2_A7)
+       REGNAME(SH7750_TCR0_A7)
+       REGNAME(SH7750_TCR1_A7)
+       REGNAME(SH7750_TCR2_A7)
+       REGNAME(SH7750_TCPR2_A7)
+       REGNAME(SH7750_BCR1_A7)
+       REGNAME(SH7750_BCR2_A7)
+       REGNAME(SH7750_WCR1_A7)
+       REGNAME(SH7750_WCR2_A7)
+       REGNAME(SH7750_WCR3_A7)
+       REGNAME(SH7750_MCR_A7)
+       REGNAME(SH7750_PCR_A7)
+       REGNAME(SH7750_RTCSR_A7)
+       REGNAME(SH7750_RTCNT_A7)
+       REGNAME(SH7750_RTCOR_A7)
+       REGNAME(SH7750_RFCR_A7)
+       REGNAME(SH7750_SAR0_A7)
+       REGNAME(SH7750_SAR1_A7)
+       REGNAME(SH7750_SAR2_A7)
+       REGNAME(SH7750_SAR3_A7)
+       REGNAME(SH7750_DAR0_A7)
+       REGNAME(SH7750_DAR1_A7)
+       REGNAME(SH7750_DAR2_A7)
+       REGNAME(SH7750_DAR3_A7)
+       REGNAME(SH7750_DMATCR0_A7)
+       REGNAME(SH7750_DMATCR1_A7)
+       REGNAME(SH7750_DMATCR2_A7)
+       REGNAME(SH7750_DMATCR3_A7)
+       REGNAME(SH7750_CHCR0_A7)
+       REGNAME(SH7750_CHCR1_A7)
+       REGNAME(SH7750_CHCR2_A7)
+       REGNAME(SH7750_CHCR3_A7)
+       REGNAME(SH7750_DMAOR_A7)
+       REGNAME(SH7750_SCRDR1_A7)
+       REGNAME(SH7750_SCRDR2_A7)
+       REGNAME(SH7750_SCTDR1_A7)
+       REGNAME(SH7750_SCTDR2_A7)
+       REGNAME(SH7750_SCSMR1_A7)
+       REGNAME(SH7750_SCSMR2_A7)
+       REGNAME(SH7750_SCSCR1_A7)
+       REGNAME(SH7750_SCSCR2_A7)
+       REGNAME(SH7750_SCSSR1_A7)
+       REGNAME(SH7750_SCSFR2_A7)
+       REGNAME(SH7750_SCSPTR1_A7)
+       REGNAME(SH7750_SCSPTR2_A7)
+       REGNAME(SH7750_SCBRR1_A7)
+       REGNAME(SH7750_SCBRR2_A7)
+       REGNAME(SH7750_SCFCR2_A7)
+       REGNAME(SH7750_SCFDR2_A7)
+       REGNAME(SH7750_SCLSR2_A7)
+       REGNAME(SH7750_SCSCMR1_A7)
+       REGNAME(SH7750_PCTRA_A7)
+       REGNAME(SH7750_PDTRA_A7)
+       REGNAME(SH7750_PCTRB_A7)
+       REGNAME(SH7750_PDTRB_A7)
+       REGNAME(SH7750_GPIOIC_A7)
+       REGNAME(SH7750_ICR_A7)
+       REGNAME(SH7750_IPRA_A7)
+       REGNAME(SH7750_IPRB_A7)
+       REGNAME(SH7750_IPRC_A7)
+       REGNAME(SH7750_BCR3_A7)
+       REGNAME(SH7750_BCR4_A7)
+       REGNAME(SH7750_PRECHARGE0_A7)
+    REGNAME(SH7750_PRECHARGE1_A7) {(uint32_t) - 1, 0}
+};
+
+const char *regname(uint32_t addr)
+{
+    unsigned int i;
+
+    for (i = 0; regnames[i].regaddr != (uint32_t) - 1; i++) {
+       if (regnames[i].regaddr == addr)
+           return regnames[i].regname;
+    }
+
+    return "<unknown reg>";
+}
diff --git a/hw/sh7750_regnames.h b/hw/sh7750_regnames.h
new file mode 100644 (file)
index 0000000..7463709
--- /dev/null
@@ -0,0 +1,6 @@
+#ifndef _SH7750_REGNAMES_H
+#define _SH7750_REGNAMES_H
+
+const char *regname(uint32_t addr);
+
+#endif                         /* _SH7750_REGNAMES_H */
diff --git a/hw/sh7750_regs.h b/hw/sh7750_regs.h
new file mode 100644 (file)
index 0000000..44ae95b
--- /dev/null
@@ -0,0 +1,1623 @@
+/*
+ * SH-7750 memory-mapped registers
+ * This file based on information provided in the following document:
+ * "Hitachi SuperH (tm) RISC engine. SH7750 Series (SH7750, SH7750S)
+ *  Hardware Manual"
+ *  Document Number ADE-602-124C, Rev. 4.0, 4/21/00, Hitachi Ltd.
+ *
+ * Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
+ * Author: Alexandra Kossovsky <sasha@oktet.ru>
+ *         Victor V. Vengerov <vvv@oktet.ru>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ * 
+ * @(#) sh7750_regs.h,v 1.2.4.1 2003/09/04 18:46:00 joel Exp
+ */
+
+#ifndef __SH7750_REGS_H__
+#define __SH7750_REGS_H__
+
+/* 
+ * All register has 2 addresses: in 0xff000000 - 0xffffffff (P4 address)  and 
+ * in 0x1f000000 - 0x1fffffff (area 7 address)
+ */
+#define SH7750_P4_BASE       0xff000000        /* Accessable only in 
+                                          priveleged mode */
+#define SH7750_A7_BASE       0x1f000000        /* Accessable only using TLB */
+
+#define SH7750_P4_REG32(ofs) (SH7750_P4_BASE + (ofs))
+#define SH7750_A7_REG32(ofs) (SH7750_A7_BASE + (ofs))
+
+/* 
+ * MMU Registers 
+ */
+
+/* Page Table Entry High register - PTEH */
+#define SH7750_PTEH_REGOFS    0x000000 /* offset */
+#define SH7750_PTEH           SH7750_P4_REG32(SH7750_PTEH_REGOFS)
+#define SH7750_PTEH_A7        SH7750_A7_REG32(SH7750_PTEH_REGOFS)
+#define SH7750_PTEH_VPN       0xfffffd00       /* Virtual page number */
+#define SH7750_PTEH_VPN_S     10
+#define SH7750_PTEH_ASID      0x000000ff       /* Address space identifier */
+#define SH7750_PTEH_ASID_S    0
+
+/* Page Table Entry Low register - PTEL */
+#define SH7750_PTEL_REGOFS    0x000004 /* offset */
+#define SH7750_PTEL           SH7750_P4_REG32(SH7750_PTEL_REGOFS)
+#define SH7750_PTEL_A7        SH7750_A7_REG32(SH7750_PTEL_REGOFS)
+#define SH7750_PTEL_PPN       0x1ffffc00       /* Physical page number */
+#define SH7750_PTEL_PPN_S     10
+#define SH7750_PTEL_V         0x00000100       /* Validity (0-entry is invalid) */
+#define SH7750_PTEL_SZ1       0x00000080       /* Page size bit 1 */
+#define SH7750_PTEL_SZ0       0x00000010       /* Page size bit 0 */
+#define SH7750_PTEL_SZ_1KB    0x00000000       /*   1-kbyte page */
+#define SH7750_PTEL_SZ_4KB    0x00000010       /*   4-kbyte page */
+#define SH7750_PTEL_SZ_64KB   0x00000080       /*   64-kbyte page */
+#define SH7750_PTEL_SZ_1MB    0x00000090       /*   1-Mbyte page */
+#define SH7750_PTEL_PR        0x00000060       /* Protection Key Data */
+#define SH7750_PTEL_PR_ROPO   0x00000000       /*   read-only in priv mode */
+#define SH7750_PTEL_PR_RWPO   0x00000020       /*   read-write in priv mode */
+#define SH7750_PTEL_PR_ROPU   0x00000040       /*   read-only in priv or user mode */
+#define SH7750_PTEL_PR_RWPU   0x00000060       /*   read-write in priv or user mode */
+#define SH7750_PTEL_C         0x00000008       /* Cacheability 
+                                                  (0 - page not cacheable) */
+#define SH7750_PTEL_D         0x00000004       /* Dirty bit (1 - write has been 
+                                                  performed to a page) */
+#define SH7750_PTEL_SH        0x00000002       /* Share Status bit (1 - page are
+                                                  shared by processes) */
+#define SH7750_PTEL_WT        0x00000001       /* Write-through bit, specifies the
+                                                  cache write mode:
+                                                  0 - Copy-back mode
+                                                  1 - Write-through mode */
+
+/* Page Table Entry Assistance register - PTEA */
+#define SH7750_PTEA_REGOFS    0x000034 /* offset */
+#define SH7750_PTEA           SH7750_P4_REG32(SH7750_PTEA_REGOFS)
+#define SH7750_PTEA_A7        SH7750_A7_REG32(SH7750_PTEA_REGOFS)
+#define SH7750_PTEA_TC        0x00000008       /* Timing Control bit
+                                                  0 - use area 5 wait states
+                                                  1 - use area 6 wait states */
+#define SH7750_PTEA_SA        0x00000007       /* Space Attribute bits: */
+#define SH7750_PTEA_SA_UNDEF  0x00000000       /*    0 - undefined */
+#define SH7750_PTEA_SA_IOVAR  0x00000001       /*    1 - variable-size I/O space */
+#define SH7750_PTEA_SA_IO8    0x00000002       /*    2 - 8-bit I/O space */
+#define SH7750_PTEA_SA_IO16   0x00000003       /*    3 - 16-bit I/O space */
+#define SH7750_PTEA_SA_CMEM8  0x00000004       /*    4 - 8-bit common memory space */
+#define SH7750_PTEA_SA_CMEM16 0x00000005       /*    5 - 16-bit common memory space */
+#define SH7750_PTEA_SA_AMEM8  0x00000006       /*    6 - 8-bit attr memory space */
+#define SH7750_PTEA_SA_AMEM16 0x00000007       /*    7 - 16-bit attr memory space */
+
+
+/* Translation table base register */
+#define SH7750_TTB_REGOFS     0x000008 /* offset */
+#define SH7750_TTB            SH7750_P4_REG32(SH7750_TTB_REGOFS)
+#define SH7750_TTB_A7         SH7750_A7_REG32(SH7750_TTB_REGOFS)
+
+/* TLB exeption address register - TEA */
+#define SH7750_TEA_REGOFS     0x00000c /* offset */
+#define SH7750_TEA            SH7750_P4_REG32(SH7750_TEA_REGOFS)
+#define SH7750_TEA_A7         SH7750_A7_REG32(SH7750_TEA_REGOFS)
+
+/* MMU control register - MMUCR */
+#define SH7750_MMUCR_REGOFS   0x000010 /* offset */
+#define SH7750_MMUCR          SH7750_P4_REG32(SH7750_MMUCR_REGOFS)
+#define SH7750_MMUCR_A7       SH7750_A7_REG32(SH7750_MMUCR_REGOFS)
+#define SH7750_MMUCR_AT       0x00000001       /* Address translation bit */
+#define SH7750_MMUCR_TI       0x00000004       /* TLB invalidate */
+#define SH7750_MMUCR_SV       0x00000100       /* Single Virtual Mode bit */
+#define SH7750_MMUCR_SQMD     0x00000200       /* Store Queue Mode bit */
+#define SH7750_MMUCR_URC      0x0000FC00       /* UTLB Replace Counter */
+#define SH7750_MMUCR_URC_S    10
+#define SH7750_MMUCR_URB      0x00FC0000       /* UTLB Replace Boundary */
+#define SH7750_MMUCR_URB_S    18
+#define SH7750_MMUCR_LRUI     0xFC000000       /* Least Recently Used ITLB */
+#define SH7750_MMUCR_LRUI_S   26
+
+
+
+
+/*
+ * Cache registers
+ *   IC -- instructions cache
+ *   OC -- operand cache
+ */
+
+/* Cache Control Register - CCR */
+#define SH7750_CCR_REGOFS     0x00001c /* offset */
+#define SH7750_CCR            SH7750_P4_REG32(SH7750_CCR_REGOFS)
+#define SH7750_CCR_A7         SH7750_A7_REG32(SH7750_CCR_REGOFS)
+
+#define SH7750_CCR_IIX      0x00008000 /* IC index enable bit */
+#define SH7750_CCR_ICI      0x00000800 /* IC invalidation bit: 
+                                          set it to clear IC */
+#define SH7750_CCR_ICE      0x00000100 /* IC enable bit */
+#define SH7750_CCR_OIX      0x00000080 /* OC index enable bit */
+#define SH7750_CCR_ORA      0x00000020 /* OC RAM enable bit 
+                                          if you set OCE = 0, 
+                                          you should set ORA = 0 */
+#define SH7750_CCR_OCI      0x00000008 /* OC invalidation bit */
+#define SH7750_CCR_CB       0x00000004 /* Copy-back bit for P1 area */
+#define SH7750_CCR_WT       0x00000002 /* Write-through bit for P0,U0,P3 area */
+#define SH7750_CCR_OCE      0x00000001 /* OC enable bit */
+
+/* Queue address control register 0 - QACR0 */
+#define SH7750_QACR0_REGOFS   0x000038 /* offset */
+#define SH7750_QACR0          SH7750_P4_REG32(SH7750_QACR0_REGOFS)
+#define SH7750_QACR0_A7       SH7750_A7_REG32(SH7750_QACR0_REGOFS)
+
+/* Queue address control register 1 - QACR1 */
+#define SH7750_QACR1_REGOFS   0x00003c /* offset */
+#define SH7750_QACR1          SH7750_P4_REG32(SH7750_QACR1_REGOFS)
+#define SH7750_QACR1_A7       SH7750_A7_REG32(SH7750_QACR1_REGOFS)
+
+
+/*
+ * Exeption-related registers
+ */
+
+/* Immediate data for TRAPA instuction - TRA */
+#define SH7750_TRA_REGOFS     0x000020 /* offset */
+#define SH7750_TRA            SH7750_P4_REG32(SH7750_TRA_REGOFS)
+#define SH7750_TRA_A7         SH7750_A7_REG32(SH7750_TRA_REGOFS)
+
+#define SH7750_TRA_IMM      0x000003fd /* Immediate data operand */
+#define SH7750_TRA_IMM_S    2
+
+/* Exeption event register - EXPEVT */
+#define SH7750_EXPEVT_REGOFS  0x000024
+#define SH7750_EXPEVT         SH7750_P4_REG32(SH7750_EXPEVT_REGOFS)
+#define SH7750_EXPEVT_A7      SH7750_A7_REG32(SH7750_EXPEVT_REGOFS)
+
+#define SH7750_EXPEVT_EX      0x00000fff       /* Exeption code */
+#define SH7750_EXPEVT_EX_S    0
+
+/* Interrupt event register */
+#define SH7750_INTEVT_REGOFS  0x000028
+#define SH7750_INTEVT         SH7750_P4_REG32(SH7750_INTEVT_REGOFS)
+#define SH7750_INTEVT_A7      SH7750_A7_REG32(SH7750_INTEVT_REGOFS)
+#define SH7750_INTEVT_EX    0x00000fff /* Exeption code */
+#define SH7750_INTEVT_EX_S  0
+
+/*
+ * Exception/interrupt codes
+ */
+#define SH7750_EVT_TO_NUM(evt)  ((evt) >> 5)
+
+/* Reset exception category */
+#define SH7750_EVT_POWER_ON_RST        0x000   /* Power-on reset */
+#define SH7750_EVT_MANUAL_RST          0x020   /* Manual reset */
+#define SH7750_EVT_TLB_MULT_HIT        0x140   /* TLB multiple-hit exception */
+
+/* General exception category */
+#define SH7750_EVT_USER_BREAK          0x1E0   /* User break */
+#define SH7750_EVT_IADDR_ERR           0x0E0   /* Instruction address error */
+#define SH7750_EVT_TLB_READ_MISS       0x040   /* ITLB miss exception /
+                                                  DTLB miss exception (read) */
+#define SH7750_EVT_TLB_READ_PROTV      0x0A0   /* ITLB protection violation /
+                                                  DTLB protection violation (read) */
+#define SH7750_EVT_ILLEGAL_INSTR       0x180   /* General Illegal Instruction
+                                                  exception */
+#define SH7750_EVT_SLOT_ILLEGAL_INSTR  0x1A0   /* Slot Illegal Instruction
+                                                  exception */
+#define SH7750_EVT_FPU_DISABLE         0x800   /* General FPU disable exception */
+#define SH7750_EVT_SLOT_FPU_DISABLE    0x820   /* Slot FPU disable exception */
+#define SH7750_EVT_DATA_READ_ERR       0x0E0   /* Data address error (read) */
+#define SH7750_EVT_DATA_WRITE_ERR      0x100   /* Data address error (write) */
+#define SH7750_EVT_DTLB_WRITE_MISS     0x060   /* DTLB miss exception (write) */
+#define SH7750_EVT_DTLB_WRITE_PROTV    0x0C0   /* DTLB protection violation
+                                                  exception (write) */
+#define SH7750_EVT_FPU_EXCEPTION       0x120   /* FPU exception */
+#define SH7750_EVT_INITIAL_PGWRITE     0x080   /* Initial Page Write exception */
+#define SH7750_EVT_TRAPA               0x160   /* Unconditional trap (TRAPA) */
+
+/* Interrupt exception category */
+#define SH7750_EVT_NMI                 0x1C0   /* Non-maskable interrupt */
+#define SH7750_EVT_IRQ0                0x200   /* External Interrupt 0 */
+#define SH7750_EVT_IRQ1                0x220   /* External Interrupt 1 */
+#define SH7750_EVT_IRQ2                0x240   /* External Interrupt 2 */
+#define SH7750_EVT_IRQ3                0x260   /* External Interrupt 3 */
+#define SH7750_EVT_IRQ4                0x280   /* External Interrupt 4 */
+#define SH7750_EVT_IRQ5                0x2A0   /* External Interrupt 5 */
+#define SH7750_EVT_IRQ6                0x2C0   /* External Interrupt 6 */
+#define SH7750_EVT_IRQ7                0x2E0   /* External Interrupt 7 */
+#define SH7750_EVT_IRQ8                0x300   /* External Interrupt 8 */
+#define SH7750_EVT_IRQ9                0x320   /* External Interrupt 9 */
+#define SH7750_EVT_IRQA                0x340   /* External Interrupt A */
+#define SH7750_EVT_IRQB                0x360   /* External Interrupt B */
+#define SH7750_EVT_IRQC                0x380   /* External Interrupt C */
+#define SH7750_EVT_IRQD                0x3A0   /* External Interrupt D */
+#define SH7750_EVT_IRQE                0x3C0   /* External Interrupt E */
+
+/* Peripheral Module Interrupts - Timer Unit (TMU) */
+#define SH7750_EVT_TUNI0               0x400   /* TMU Underflow Interrupt 0 */
+#define SH7750_EVT_TUNI1               0x420   /* TMU Underflow Interrupt 1 */
+#define SH7750_EVT_TUNI2               0x440   /* TMU Underflow Interrupt 2 */
+#define SH7750_EVT_TICPI2              0x460   /* TMU Input Capture Interrupt 2 */
+
+/* Peripheral Module Interrupts - Real-Time Clock (RTC) */
+#define SH7750_EVT_RTC_ATI             0x480   /* Alarm Interrupt Request */
+#define SH7750_EVT_RTC_PRI             0x4A0   /* Periodic Interrupt Request */
+#define SH7750_EVT_RTC_CUI             0x4C0   /* Carry Interrupt Request */
+
+/* Peripheral Module Interrupts - Serial Communication Interface (SCI) */
+#define SH7750_EVT_SCI_ERI             0x4E0   /* Receive Error */
+#define SH7750_EVT_SCI_RXI             0x500   /* Receive Data Register Full */
+#define SH7750_EVT_SCI_TXI             0x520   /* Transmit Data Register Empty */
+#define SH7750_EVT_SCI_TEI             0x540   /* Transmit End */
+
+/* Peripheral Module Interrupts - Watchdog Timer (WDT) */
+#define SH7750_EVT_WDT_ITI             0x560   /* Interval Timer Interrupt
+                                                  (used when WDT operates in
+                                                  interval timer mode) */
+
+/* Peripheral Module Interrupts - Memory Refresh Unit (REF) */
+#define SH7750_EVT_REF_RCMI            0x580   /* Compare-match Interrupt */
+#define SH7750_EVT_REF_ROVI            0x5A0   /* Refresh Counter Overflow 
+                                                  interrupt */
+
+/* Peripheral Module Interrupts - Hitachi User Debug Interface (H-UDI) */
+#define SH7750_EVT_HUDI                0x600   /* UDI interrupt */
+
+/* Peripheral Module Interrupts - General-Purpose I/O (GPIO) */
+#define SH7750_EVT_GPIO                0x620   /* GPIO Interrupt */
+
+/* Peripheral Module Interrupts - DMA Controller (DMAC) */
+#define SH7750_EVT_DMAC_DMTE0          0x640   /* DMAC 0 Transfer End Interrupt */
+#define SH7750_EVT_DMAC_DMTE1          0x660   /* DMAC 1 Transfer End Interrupt */
+#define SH7750_EVT_DMAC_DMTE2          0x680   /* DMAC 2 Transfer End Interrupt */
+#define SH7750_EVT_DMAC_DMTE3          0x6A0   /* DMAC 3 Transfer End Interrupt */
+#define SH7750_EVT_DMAC_DMAE           0x6C0   /* DMAC Address Error Interrupt */
+
+/* Peripheral Module Interrupts - Serial Communication Interface with FIFO */
+/*                                                                  (SCIF) */
+#define SH7750_EVT_SCIF_ERI            0x700   /* Receive Error */
+#define SH7750_EVT_SCIF_RXI            0x720   /* Receive FIFO Data Full or
+                                                  Receive Data ready interrupt */
+#define SH7750_EVT_SCIF_BRI            0x740   /* Break or overrun error */
+#define SH7750_EVT_SCIF_TXI            0x760   /* Transmit FIFO Data Empty */
+
+/*
+ * Power Management
+ */
+#define SH7750_STBCR_REGOFS   0xC00004 /* offset */
+#define SH7750_STBCR          SH7750_P4_REG32(SH7750_STBCR_REGOFS)
+#define SH7750_STBCR_A7       SH7750_A7_REG32(SH7750_STBCR_REGOFS)
+
+#define SH7750_STBCR_STBY     0x80     /* Specifies a transition to standby mode:
+                                          0 - Transition to SLEEP mode on SLEEP
+                                          1 - Transition to STANDBY mode on SLEEP */
+#define SH7750_STBCR_PHZ      0x40     /* State of peripheral module pins in
+                                          standby mode:
+                                          0 - normal state
+                                          1 - high-impendance state */
+
+#define SH7750_STBCR_PPU      0x20     /* Peripheral module pins pull-up controls */
+#define SH7750_STBCR_MSTP4    0x10     /* Stopping the clock supply to DMAC */
+#define SH7750_STBCR_DMAC_STP SH7750_STBCR_MSTP4
+#define SH7750_STBCR_MSTP3    0x08     /* Stopping the clock supply to SCIF */
+#define SH7750_STBCR_SCIF_STP SH7750_STBCR_MSTP3
+#define SH7750_STBCR_MSTP2    0x04     /* Stopping the clock supply to TMU */
+#define SH7750_STBCR_TMU_STP  SH7750_STBCR_MSTP2
+#define SH7750_STBCR_MSTP1    0x02     /* Stopping the clock supply to RTC */
+#define SH7750_STBCR_RTC_STP  SH7750_STBCR_MSTP1
+#define SH7750_STBCR_MSPT0    0x01     /* Stopping the clock supply to SCI */
+#define SH7750_STBCR_SCI_STP  SH7750_STBCR_MSTP0
+
+#define SH7750_STBCR_STBY     0x80
+
+
+#define SH7750_STBCR2_REGOFS  0xC00010 /* offset */
+#define SH7750_STBCR2         SH7750_P4_REG32(SH7750_STBCR2_REGOFS)
+#define SH7750_STBCR2_A7      SH7750_A7_REG32(SH7750_STBCR2_REGOFS)
+
+#define SH7750_STBCR2_DSLP    0x80     /* Specifies transition to deep sleep mode:
+                                          0 - transition to sleep or standby mode
+                                          as it is specified in STBY bit
+                                          1 - transition to deep sleep mode on
+                                          execution of SLEEP instruction */
+#define SH7750_STBCR2_MSTP6   0x02     /* Stopping the clock supply to Store Queue
+                                          in the cache controller */
+#define SH7750_STBCR2_SQ_STP  SH7750_STBCR2_MSTP6
+#define SH7750_STBCR2_MSTP5   0x01     /* Stopping the clock supply to the User
+                                          Break Controller (UBC) */
+#define SH7750_STBCR2_UBC_STP SH7750_STBCR2_MSTP5
+
+/*
+ * Clock Pulse Generator (CPG)
+ */
+#define SH7750_FRQCR_REGOFS   0xC00000 /* offset */
+#define SH7750_FRQCR          SH7750_P4_REG32(SH7750_FRQCR_REGOFS)
+#define SH7750_FRQCR_A7       SH7750_A7_REG32(SH7750_FRQCR_REGOFS)
+
+#define SH7750_FRQCR_CKOEN    0x0800   /* Clock Output Enable 
+                                          0 - CKIO pin goes to HiZ/pullup
+                                          1 - Clock is output from CKIO */
+#define SH7750_FRQCR_PLL1EN   0x0400   /* PLL circuit 1 enable */
+#define SH7750_FRQCR_PLL2EN   0x0200   /* PLL circuit 2 enable */
+
+#define SH7750_FRQCR_IFC      0x01C0   /* CPU clock frequency division ratio: */
+#define SH7750_FRQCR_IFCDIV1  0x0000   /*    0 - * 1 */
+#define SH7750_FRQCR_IFCDIV2  0x0040   /*    1 - * 1/2 */
+#define SH7750_FRQCR_IFCDIV3  0x0080   /*    2 - * 1/3 */
+#define SH7750_FRQCR_IFCDIV4  0x00C0   /*    3 - * 1/4 */
+#define SH7750_FRQCR_IFCDIV6  0x0100   /*    4 - * 1/6 */
+#define SH7750_FRQCR_IFCDIV8  0x0140   /*    5 - * 1/8 */
+
+#define SH7750_FRQCR_BFC      0x0038   /* Bus clock frequency division ratio: */
+#define SH7750_FRQCR_BFCDIV1  0x0000   /*    0 - * 1 */
+#define SH7750_FRQCR_BFCDIV2  0x0008   /*    1 - * 1/2 */
+#define SH7750_FRQCR_BFCDIV3  0x0010   /*    2 - * 1/3 */
+#define SH7750_FRQCR_BFCDIV4  0x0018   /*    3 - * 1/4 */
+#define SH7750_FRQCR_BFCDIV6  0x0020   /*    4 - * 1/6 */
+#define SH7750_FRQCR_BFCDIV8  0x0028   /*    5 - * 1/8 */
+
+#define SH7750_FRQCR_PFC      0x0007   /* Peripheral module clock frequency
+                                          division ratio: */
+#define SH7750_FRQCR_PFCDIV2  0x0000   /*    0 - * 1/2 */
+#define SH7750_FRQCR_PFCDIV3  0x0001   /*    1 - * 1/3 */
+#define SH7750_FRQCR_PFCDIV4  0x0002   /*    2 - * 1/4 */
+#define SH7750_FRQCR_PFCDIV6  0x0003   /*    3 - * 1/6 */
+#define SH7750_FRQCR_PFCDIV8  0x0004   /*    4 - * 1/8 */
+
+/*
+ * Watchdog Timer (WDT)
+ */
+
+/* Watchdog Timer Counter register - WTCNT */
+#define SH7750_WTCNT_REGOFS   0xC00008 /* offset */
+#define SH7750_WTCNT          SH7750_P4_REG32(SH7750_WTCNT_REGOFS)
+#define SH7750_WTCNT_A7       SH7750_A7_REG32(SH7750_WTCNT_REGOFS)
+#define SH7750_WTCNT_KEY      0x5A00   /* When WTCNT byte register written,
+                                          you have to set the upper byte to
+                                          0x5A */
+
+/* Watchdog Timer Control/Status register - WTCSR */
+#define SH7750_WTCSR_REGOFS   0xC0000C /* offset */
+#define SH7750_WTCSR          SH7750_P4_REG32(SH7750_WTCSR_REGOFS)
+#define SH7750_WTCSR_A7       SH7750_A7_REG32(SH7750_WTCSR_REGOFS)
+#define SH7750_WTCSR_KEY      0xA500   /* When WTCSR byte register written,
+                                          you have to set the upper byte to
+                                          0xA5 */
+#define SH7750_WTCSR_TME      0x80     /* Timer enable (1-upcount start) */
+#define SH7750_WTCSR_MODE     0x40     /* Timer Mode Select: */
+#define SH7750_WTCSR_MODE_WT  0x40     /*    Watchdog Timer Mode */
+#define SH7750_WTCSR_MODE_IT  0x00     /*    Interval Timer Mode */
+#define SH7750_WTCSR_RSTS     0x20     /* Reset Select: */
+#define SH7750_WTCSR_RST_MAN  0x20     /*    Manual Reset */
+#define SH7750_WTCSR_RST_PWR  0x00     /*    Power-on Reset */
+#define SH7750_WTCSR_WOVF     0x10     /* Watchdog Timer Overflow Flag */
+#define SH7750_WTCSR_IOVF     0x08     /* Interval Timer Overflow Flag */
+#define SH7750_WTCSR_CKS      0x07     /* Clock Select: */
+#define SH7750_WTCSR_CKS_DIV32   0x00  /*   1/32 of frequency divider 2 input */
+#define SH7750_WTCSR_CKS_DIV64   0x01  /*   1/64 */
+#define SH7750_WTCSR_CKS_DIV128  0x02  /*   1/128 */
+#define SH7750_WTCSR_CKS_DIV256  0x03  /*   1/256 */
+#define SH7750_WTCSR_CKS_DIV512  0x04  /*   1/512 */
+#define SH7750_WTCSR_CKS_DIV1024 0x05  /*   1/1024 */
+#define SH7750_WTCSR_CKS_DIV2048 0x06  /*   1/2048 */
+#define SH7750_WTCSR_CKS_DIV4096 0x07  /*   1/4096 */
+
+/*
+ * Real-Time Clock (RTC)
+ */
+/* 64-Hz Counter Register (byte, read-only) - R64CNT */
+#define SH7750_R64CNT_REGOFS  0xC80000 /* offset */
+#define SH7750_R64CNT         SH7750_P4_REG32(SH7750_R64CNT_REGOFS)
+#define SH7750_R64CNT_A7      SH7750_A7_REG32(SH7750_R64CNT_REGOFS)
+
+/* Second Counter Register (byte, BCD-coded) - RSECCNT */
+#define SH7750_RSECCNT_REGOFS 0xC80004 /* offset */
+#define SH7750_RSECCNT        SH7750_P4_REG32(SH7750_RSECCNT_REGOFS)
+#define SH7750_RSECCNT_A7     SH7750_A7_REG32(SH7750_RSECCNT_REGOFS)
+
+/* Minute Counter Register (byte, BCD-coded) - RMINCNT */
+#define SH7750_RMINCNT_REGOFS 0xC80008 /* offset */
+#define SH7750_RMINCNT        SH7750_P4_REG32(SH7750_RMINCNT_REGOFS)
+#define SH7750_RMINCNT_A7     SH7750_A7_REG32(SH7750_RMINCNT_REGOFS)
+
+/* Hour Counter Register (byte, BCD-coded) - RHRCNT */
+#define SH7750_RHRCNT_REGOFS  0xC8000C /* offset */
+#define SH7750_RHRCNT         SH7750_P4_REG32(SH7750_RHRCNT_REGOFS)
+#define SH7750_RHRCNT_A7      SH7750_A7_REG32(SH7750_RHRCNT_REGOFS)
+
+/* Day-of-Week Counter Register (byte) - RWKCNT */
+#define SH7750_RWKCNT_REGOFS  0xC80010 /* offset */
+#define SH7750_RWKCNT         SH7750_P4_REG32(SH7750_RWKCNT_REGOFS)
+#define SH7750_RWKCNT_A7      SH7750_A7_REG32(SH7750_RWKCNT_REGOFS)
+
+#define SH7750_RWKCNT_SUN     0        /* Sunday */
+#define SH7750_RWKCNT_MON     1        /* Monday */
+#define SH7750_RWKCNT_TUE     2        /* Tuesday */
+#define SH7750_RWKCNT_WED     3        /* Wednesday */
+#define SH7750_RWKCNT_THU     4        /* Thursday */
+#define SH7750_RWKCNT_FRI     5        /* Friday */
+#define SH7750_RWKCNT_SAT     6        /* Saturday */
+
+/* Day Counter Register (byte, BCD-coded) - RDAYCNT */
+#define SH7750_RDAYCNT_REGOFS 0xC80014 /* offset */
+#define SH7750_RDAYCNT        SH7750_P4_REG32(SH7750_RDAYCNT_REGOFS)
+#define SH7750_RDAYCNT_A7     SH7750_A7_REG32(SH7750_RDAYCNT_REGOFS)
+
+/* Month Counter Register (byte, BCD-coded) - RMONCNT */
+#define SH7750_RMONCNT_REGOFS 0xC80018 /* offset */
+#define SH7750_RMONCNT        SH7750_P4_REG32(SH7750_RMONCNT_REGOFS)
+#define SH7750_RMONCNT_A7     SH7750_A7_REG32(SH7750_RMONCNT_REGOFS)
+
+/* Year Counter Register (half, BCD-coded) - RYRCNT */
+#define SH7750_RYRCNT_REGOFS  0xC8001C /* offset */
+#define SH7750_RYRCNT         SH7750_P4_REG32(SH7750_RYRCNT_REGOFS)
+#define SH7750_RYRCNT_A7      SH7750_A7_REG32(SH7750_RYRCNT_REGOFS)
+
+/* Second Alarm Register (byte, BCD-coded) - RSECAR */
+#define SH7750_RSECAR_REGOFS  0xC80020 /* offset */
+#define SH7750_RSECAR         SH7750_P4_REG32(SH7750_RSECAR_REGOFS)
+#define SH7750_RSECAR_A7      SH7750_A7_REG32(SH7750_RSECAR_REGOFS)
+#define SH7750_RSECAR_ENB     0x80     /* Second Alarm Enable */
+
+/* Minute Alarm Register (byte, BCD-coded) - RMINAR */
+#define SH7750_RMINAR_REGOFS  0xC80024 /* offset */
+#define SH7750_RMINAR         SH7750_P4_REG32(SH7750_RMINAR_REGOFS)
+#define SH7750_RMINAR_A7      SH7750_A7_REG32(SH7750_RMINAR_REGOFS)
+#define SH7750_RMINAR_ENB     0x80     /* Minute Alarm Enable */
+
+/* Hour Alarm Register (byte, BCD-coded) - RHRAR */
+#define SH7750_RHRAR_REGOFS   0xC80028 /* offset */
+#define SH7750_RHRAR          SH7750_P4_REG32(SH7750_RHRAR_REGOFS)
+#define SH7750_RHRAR_A7       SH7750_A7_REG32(SH7750_RHRAR_REGOFS)
+#define SH7750_RHRAR_ENB      0x80     /* Hour Alarm Enable */
+
+/* Day-of-Week Alarm Register (byte) - RWKAR */
+#define SH7750_RWKAR_REGOFS   0xC8002C /* offset */
+#define SH7750_RWKAR          SH7750_P4_REG32(SH7750_RWKAR_REGOFS)
+#define SH7750_RWKAR_A7       SH7750_A7_REG32(SH7750_RWKAR_REGOFS)
+#define SH7750_RWKAR_ENB      0x80     /* Day-of-week Alarm Enable */
+
+#define SH7750_RWKAR_SUN      0        /* Sunday */
+#define SH7750_RWKAR_MON      1        /* Monday */
+#define SH7750_RWKAR_TUE      2        /* Tuesday */
+#define SH7750_RWKAR_WED      3        /* Wednesday */
+#define SH7750_RWKAR_THU      4        /* Thursday */
+#define SH7750_RWKAR_FRI      5        /* Friday */
+#define SH7750_RWKAR_SAT      6        /* Saturday */
+
+/* Day Alarm Register (byte, BCD-coded) - RDAYAR */
+#define SH7750_RDAYAR_REGOFS  0xC80030 /* offset */
+#define SH7750_RDAYAR         SH7750_P4_REG32(SH7750_RDAYAR_REGOFS)
+#define SH7750_RDAYAR_A7      SH7750_A7_REG32(SH7750_RDAYAR_REGOFS)
+#define SH7750_RDAYAR_ENB     0x80     /* Day Alarm Enable */
+
+/* Month Counter Register (byte, BCD-coded) - RMONAR */
+#define SH7750_RMONAR_REGOFS  0xC80034 /* offset */
+#define SH7750_RMONAR         SH7750_P4_REG32(SH7750_RMONAR_REGOFS)
+#define SH7750_RMONAR_A7      SH7750_A7_REG32(SH7750_RMONAR_REGOFS)
+#define SH7750_RMONAR_ENB     0x80     /* Month Alarm Enable */
+
+/* RTC Control Register 1 (byte) - RCR1 */
+#define SH7750_RCR1_REGOFS    0xC80038 /* offset */
+#define SH7750_RCR1           SH7750_P4_REG32(SH7750_RCR1_REGOFS)
+#define SH7750_RCR1_A7        SH7750_A7_REG32(SH7750_RCR1_REGOFS)
+#define SH7750_RCR1_CF        0x80     /* Carry Flag */
+#define SH7750_RCR1_CIE       0x10     /* Carry Interrupt Enable */
+#define SH7750_RCR1_AIE       0x08     /* Alarm Interrupt Enable */
+#define SH7750_RCR1_AF        0x01     /* Alarm Flag */
+
+/* RTC Control Register 2 (byte) - RCR2 */
+#define SH7750_RCR2_REGOFS    0xC8003C /* offset */
+#define SH7750_RCR2           SH7750_P4_REG32(SH7750_RCR2_REGOFS)
+#define SH7750_RCR2_A7        SH7750_A7_REG32(SH7750_RCR2_REGOFS)
+#define SH7750_RCR2_PEF        0x80    /* Periodic Interrupt Flag */
+#define SH7750_RCR2_PES        0x70    /* Periodic Interrupt Enable: */
+#define SH7750_RCR2_PES_DIS    0x00    /*   Periodic Interrupt Disabled */
+#define SH7750_RCR2_PES_DIV256 0x10    /*   Generated at 1/256 sec interval */
+#define SH7750_RCR2_PES_DIV64  0x20    /*   Generated at 1/64 sec interval */
+#define SH7750_RCR2_PES_DIV16  0x30    /*   Generated at 1/16 sec interval */
+#define SH7750_RCR2_PES_DIV4   0x40    /*   Generated at 1/4 sec interval */
+#define SH7750_RCR2_PES_DIV2   0x50    /*   Generated at 1/2 sec interval */
+#define SH7750_RCR2_PES_x1     0x60    /*   Generated at 1 sec interval */
+#define SH7750_RCR2_PES_x2     0x70    /*   Generated at 2 sec interval */
+#define SH7750_RCR2_RTCEN      0x08    /* RTC Crystal Oscillator is Operated */
+#define SH7750_RCR2_ADJ        0x04    /* 30-Second Adjastment */
+#define SH7750_RCR2_RESET      0x02    /* Frequency divider circuits are reset */
+#define SH7750_RCR2_START      0x01    /* 0 - sec, min, hr, day-of-week, month,
+                                          year counters are stopped
+                                          1 - sec, min, hr, day-of-week, month,
+                                          year counters operate normally */
+
+
+/*
+ * Timer Unit (TMU)
+ */
+/* Timer Output Control Register (byte) - TOCR */
+#define SH7750_TOCR_REGOFS    0xD80000 /* offset */
+#define SH7750_TOCR           SH7750_P4_REG32(SH7750_TOCR_REGOFS)
+#define SH7750_TOCR_A7        SH7750_A7_REG32(SH7750_TOCR_REGOFS)
+#define SH7750_TOCR_TCOE      0x01     /* Timer Clock Pin Control:
+                                          0 - TCLK is used as external clock
+                                          input or input capture control
+                                          1 - TCLK is used as on-chip RTC
+                                          output clock pin */
+
+/* Timer Start Register (byte) - TSTR */
+#define SH7750_TSTR_REGOFS    0xD80004 /* offset */
+#define SH7750_TSTR           SH7750_P4_REG32(SH7750_TSTR_REGOFS)
+#define SH7750_TSTR_A7        SH7750_A7_REG32(SH7750_TSTR_REGOFS)
+#define SH7750_TSTR_STR2      0x04     /* TCNT2 performs count operations */
+#define SH7750_TSTR_STR1      0x02     /* TCNT1 performs count operations */
+#define SH7750_TSTR_STR0      0x01     /* TCNT0 performs count operations */
+#define SH7750_TSTR_STR(n)    (1 << (n))
+
+/* Timer Constant Register - TCOR0, TCOR1, TCOR2 */
+#define SH7750_TCOR_REGOFS(n) (0xD80008 + ((n)*12))    /* offset */
+#define SH7750_TCOR(n)        SH7750_P4_REG32(SH7750_TCOR_REGOFS(n))
+#define SH7750_TCOR_A7(n)     SH7750_A7_REG32(SH7750_TCOR_REGOFS(n))
+#define SH7750_TCOR0          SH7750_TCOR(0)
+#define SH7750_TCOR1          SH7750_TCOR(1)
+#define SH7750_TCOR2          SH7750_TCOR(2)
+#define SH7750_TCOR0_A7       SH7750_TCOR_A7(0)
+#define SH7750_TCOR1_A7       SH7750_TCOR_A7(1)
+#define SH7750_TCOR2_A7       SH7750_TCOR_A7(2)
+
+/* Timer Counter Register - TCNT0, TCNT1, TCNT2 */
+#define SH7750_TCNT_REGOFS(n) (0xD8000C + ((n)*12))    /* offset */
+#define SH7750_TCNT(n)        SH7750_P4_REG32(SH7750_TCNT_REGOFS(n))
+#define SH7750_TCNT_A7(n)     SH7750_A7_REG32(SH7750_TCNT_REGOFS(n))
+#define SH7750_TCNT0          SH7750_TCNT(0)
+#define SH7750_TCNT1          SH7750_TCNT(1)
+#define SH7750_TCNT2          SH7750_TCNT(2)
+#define SH7750_TCNT0_A7       SH7750_TCNT_A7(0)
+#define SH7750_TCNT1_A7       SH7750_TCNT_A7(1)
+#define SH7750_TCNT2_A7       SH7750_TCNT_A7(2)
+
+/* Timer Control Register (half) - TCR0, TCR1, TCR2 */
+#define SH7750_TCR_REGOFS(n)  (0xD80010 + ((n)*12))    /* offset */
+#define SH7750_TCR(n)         SH7750_P4_REG32(SH7750_TCR_REGOFS(n))
+#define SH7750_TCR_A7(n)      SH7750_A7_REG32(SH7750_TCR_REGOFS(n))
+#define SH7750_TCR0           SH7750_TCR(0)
+#define SH7750_TCR1           SH7750_TCR(1)
+#define SH7750_TCR2           SH7750_TCR(2)
+#define SH7750_TCR0_A7        SH7750_TCR_A7(0)
+#define SH7750_TCR1_A7        SH7750_TCR_A7(1)
+#define SH7750_TCR2_A7        SH7750_TCR_A7(2)
+
+#define SH7750_TCR2_ICPF       0x200   /* Input Capture Interrupt Flag
+                                          (1 - input capture has occured) */
+#define SH7750_TCR_UNF         0x100   /* Underflow flag */
+#define SH7750_TCR2_ICPE       0x0C0   /* Input Capture Control: */
+#define SH7750_TCR2_ICPE_DIS   0x000   /*   Input Capture function is not used */
+#define SH7750_TCR2_ICPE_NOINT 0x080   /*   Input Capture function is used, but
+                                          input capture interrupt is not
+                                          enabled */
+#define SH7750_TCR2_ICPE_INT   0x0C0   /*   Input Capture function is used,
+                                          input capture interrupt enabled */
+#define SH7750_TCR_UNIE        0x020   /* Underflow Interrupt Control
+                                          (1 - underflow interrupt enabled) */
+#define SH7750_TCR_CKEG        0x018   /* Clock Edge selection: */
+#define SH7750_TCR_CKEG_RAISE  0x000   /*   Count/capture on rising edge */
+#define SH7750_TCR_CKEG_FALL   0x008   /*   Count/capture on falling edge */
+#define SH7750_TCR_CKEG_BOTH   0x018   /*   Count/capture on both rising and
+                                          falling edges */
+#define SH7750_TCR_TPSC         0x007  /* Timer prescaler */
+#define SH7750_TCR_TPSC_DIV4    0x000  /*   Counts on peripheral clock/4 */
+#define SH7750_TCR_TPSC_DIV16   0x001  /*   Counts on peripheral clock/16 */
+#define SH7750_TCR_TPSC_DIV64   0x002  /*   Counts on peripheral clock/64 */
+#define SH7750_TCR_TPSC_DIV256  0x003  /*   Counts on peripheral clock/256 */
+#define SH7750_TCR_TPSC_DIV1024 0x004  /*   Counts on peripheral clock/1024 */
+#define SH7750_TCR_TPSC_RTC     0x006  /*   Counts on on-chip RTC output clk */
+#define SH7750_TCR_TPSC_EXT     0x007  /*   Counts on external clock */
+
+/* Input Capture Register (read-only) - TCPR2 */
+#define SH7750_TCPR2_REGOFS   0xD8002C /* offset */
+#define SH7750_TCPR2          SH7750_P4_REG32(SH7750_TCPR2_REGOFS)
+#define SH7750_TCPR2_A7       SH7750_A7_REG32(SH7750_TCPR2_REGOFS)
+
+/*
+ * Bus State Controller - BSC
+ */
+/* Bus Control Register 1 - BCR1 */
+#define SH7750_BCR1_REGOFS    0x800000 /* offset */
+#define SH7750_BCR1           SH7750_P4_REG32(SH7750_BCR1_REGOFS)
+#define SH7750_BCR1_A7        SH7750_A7_REG32(SH7750_BCR1_REGOFS)
+#define SH7750_BCR1_ENDIAN    0x80000000       /* Endianness (1 - little endian) */
+#define SH7750_BCR1_MASTER    0x40000000       /* Master/Slave mode (1-master) */
+#define SH7750_BCR1_A0MPX     0x20000000       /* Area 0 Memory Type (0-SRAM,1-MPX) */
+#define SH7750_BCR1_IPUP      0x02000000       /* Input Pin Pull-up Control:
+                                                  0 - pull-up resistor is on for
+                                                  control input pins
+                                                  1 - pull-up resistor is off */
+#define SH7750_BCR1_OPUP      0x01000000       /* Output Pin Pull-up Control:
+                                                  0 - pull-up resistor is on for
+                                                  control output pins
+                                                  1 - pull-up resistor is off */
+#define SH7750_BCR1_A1MBC     0x00200000       /* Area 1 SRAM Byte Control Mode:
+                                                  0 - Area 1 SRAM is set to
+                                                  normal mode
+                                                  1 - Area 1 SRAM is set to byte
+                                                  control mode */
+#define SH7750_BCR1_A4MBC     0x00100000       /* Area 4 SRAM Byte Control Mode:
+                                                  0 - Area 4 SRAM is set to
+                                                  normal mode
+                                                  1 - Area 4 SRAM is set to byte
+                                                  control mode */
+#define SH7750_BCR1_BREQEN    0x00080000       /* BREQ Enable:
+                                                  0 - External requests are  not
+                                                  accepted
+                                                  1 - External requests are 
+                                                  accepted */
+#define SH7750_BCR1_PSHR      0x00040000       /* Partial Sharing Bit:
+                                                  0 - Master Mode
+                                                  1 - Partial-sharing Mode */
+#define SH7750_BCR1_MEMMPX    0x00020000       /* Area 1 to 6 MPX Interface:
+                                                  0 - SRAM/burst ROM interface
+                                                  1 - MPX interface */
+#define SH7750_BCR1_HIZMEM    0x00008000       /* High Impendance Control. Specifies
+                                                  the state of A[25:0], BS\, CSn\,
+                                                  RD/WR\, CE2A\, CE2B\ in standby
+                                                  mode and when bus is released:
+                                                  0 - signals go to High-Z mode
+                                                  1 - signals driven */
+#define SH7750_BCR1_HIZCNT    0x00004000       /* High Impendance Control. Specifies
+                                                  the state of the RAS\, RAS2\, WEn\,
+                                                  CASn\, DQMn, RD\, CASS\, FRAME\,
+                                                  RD2\ signals in standby mode and
+                                                  when bus is released:
+                                                  0 - signals go to High-Z mode
+                                                  1 - signals driven */
+#define SH7750_BCR1_A0BST     0x00003800       /* Area 0 Burst ROM Control */
+#define SH7750_BCR1_A0BST_SRAM    0x0000       /*   Area 0 accessed as SRAM i/f */
+#define SH7750_BCR1_A0BST_ROM4    0x0800       /*   Area 0 accessed as burst ROM
+                                                  interface, 4 cosequtive access */
+#define SH7750_BCR1_A0BST_ROM8    0x1000       /*   Area 0 accessed as burst ROM
+                                                  interface, 8 cosequtive access */
+#define SH7750_BCR1_A0BST_ROM16   0x1800       /*   Area 0 accessed as burst ROM
+                                                  interface, 16 cosequtive access */
+#define SH7750_BCR1_A0BST_ROM32   0x2000       /*   Area 0 accessed as burst ROM
+                                                  interface, 32 cosequtive access */
+
+#define SH7750_BCR1_A5BST     0x00000700       /* Area 5 Burst ROM Control */
+#define SH7750_BCR1_A5BST_SRAM    0x0000       /*   Area 5 accessed as SRAM i/f */
+#define SH7750_BCR1_A5BST_ROM4    0x0100       /*   Area 5 accessed as burst ROM
+                                                  interface, 4 cosequtive access */
+#define SH7750_BCR1_A5BST_ROM8    0x0200       /*   Area 5 accessed as burst ROM
+                                                  interface, 8 cosequtive access */
+#define SH7750_BCR1_A5BST_ROM16   0x0300       /*   Area 5 accessed as burst ROM
+                                                  interface, 16 cosequtive access */
+#define SH7750_BCR1_A5BST_ROM32   0x0400       /*   Area 5 accessed as burst ROM
+                                                  interface, 32 cosequtive access */
+
+#define SH7750_BCR1_A6BST     0x000000E0       /* Area 6 Burst ROM Control */
+#define SH7750_BCR1_A6BST_SRAM    0x0000       /*   Area 6 accessed as SRAM i/f */
+#define SH7750_BCR1_A6BST_ROM4    0x0020       /*   Area 6 accessed as burst ROM
+                                                  interface, 4 cosequtive access */
+#define SH7750_BCR1_A6BST_ROM8    0x0040       /*   Area 6 accessed as burst ROM
+                                                  interface, 8 cosequtive access */
+#define SH7750_BCR1_A6BST_ROM16   0x0060       /*   Area 6 accessed as burst ROM
+                                                  interface, 16 cosequtive access */
+#define SH7750_BCR1_A6BST_ROM32   0x0080       /*   Area 6 accessed as burst ROM
+                                                  interface, 32 cosequtive access */
+
+#define SH7750_BCR1_DRAMTP        0x001C       /* Area 2 and 3 Memory Type */
+#define SH7750_BCR1_DRAMTP_2SRAM_3SRAM   0x0000        /* Area 2 and 3 are SRAM or MPX
+                                                  interface. */
+#define SH7750_BCR1_DRAMTP_2SRAM_3SDRAM  0x0008        /* Area 2 - SRAM/MPX, Area 3 -
+                                                  synchronous DRAM */
+#define SH7750_BCR1_DRAMTP_2SDRAM_3SDRAM 0x000C        /* Area 2 and 3 are synchronous
+                                                  DRAM interface */
+#define SH7750_BCR1_DRAMTP_2SRAM_3DRAM   0x0010        /* Area 2 - SRAM/MPX, Area 3 -
+                                                  DRAM interface */
+#define SH7750_BCR1_DRAMTP_2DRAM_3DRAM   0x0014        /* Area 2 and 3 are DRAM
+                                                  interface */
+
+#define SH7750_BCR1_A56PCM    0x00000001       /* Area 5 and 6 Bus Type:
+                                                  0 - SRAM interface
+                                                  1 - PCMCIA interface */
+
+/* Bus Control Register 2 (half) - BCR2 */
+#define SH7750_BCR2_REGOFS    0x800004 /* offset */
+#define SH7750_BCR2           SH7750_P4_REG32(SH7750_BCR2_REGOFS)
+#define SH7750_BCR2_A7        SH7750_A7_REG32(SH7750_BCR2_REGOFS)
+
+#define SH7750_BCR2_A0SZ      0xC000   /* Area 0 Bus Width */
+#define SH7750_BCR2_A0SZ_S    14
+#define SH7750_BCR2_A6SZ      0x3000   /* Area 6 Bus Width */
+#define SH7750_BCR2_A6SZ_S    12
+#define SH7750_BCR2_A5SZ      0x0C00   /* Area 5 Bus Width */
+#define SH7750_BCR2_A5SZ_S    10
+#define SH7750_BCR2_A4SZ      0x0300   /* Area 4 Bus Width */
+#define SH7750_BCR2_A4SZ_S    8
+#define SH7750_BCR2_A3SZ      0x00C0   /* Area 3 Bus Width */
+#define SH7750_BCR2_A3SZ_S    6
+#define SH7750_BCR2_A2SZ      0x0030   /* Area 2 Bus Width */
+#define SH7750_BCR2_A2SZ_S    4
+#define SH7750_BCR2_A1SZ      0x000C   /* Area 1 Bus Width */
+#define SH7750_BCR2_A1SZ_S    2
+#define SH7750_BCR2_SZ_64     0        /* 64 bits */
+#define SH7750_BCR2_SZ_8      1        /* 8 bits */
+#define SH7750_BCR2_SZ_16     2        /* 16 bits */
+#define SH7750_BCR2_SZ_32     3        /* 32 bits */
+#define SH7750_BCR2_PORTEN    0x0001   /* Port Function Enable :
+                                          0 - D51-D32 are not used as a port
+                                          1 - D51-D32 are used as a port */
+
+/* Wait Control Register 1 - WCR1 */
+#define SH7750_WCR1_REGOFS    0x800008 /* offset */
+#define SH7750_WCR1           SH7750_P4_REG32(SH7750_WCR1_REGOFS)
+#define SH7750_WCR1_A7        SH7750_A7_REG32(SH7750_WCR1_REGOFS)
+#define SH7750_WCR1_DMAIW     0x70000000       /* DACK Device Inter-Cycle Idle
+                                                  specification */
+#define SH7750_WCR1_DMAIW_S   28
+#define SH7750_WCR1_A6IW      0x07000000       /* Area 6 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A6IW_S    24
+#define SH7750_WCR1_A5IW      0x00700000       /* Area 5 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A5IW_S    20
+#define SH7750_WCR1_A4IW      0x00070000       /* Area 4 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A4IW_S    16
+#define SH7750_WCR1_A3IW      0x00007000       /* Area 3 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A3IW_S    12
+#define SH7750_WCR1_A2IW      0x00000700       /* Area 2 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A2IW_S    8
+#define SH7750_WCR1_A1IW      0x00000070       /* Area 1 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A1IW_S    4
+#define SH7750_WCR1_A0IW      0x00000007       /* Area 0 Inter-Cycle Idle spec. */
+#define SH7750_WCR1_A0IW_S    0
+
+/* Wait Control Register 2 - WCR2 */
+#define SH7750_WCR2_REGOFS    0x80000C /* offset */
+#define SH7750_WCR2           SH7750_P4_REG32(SH7750_WCR2_REGOFS)
+#define SH7750_WCR2_A7        SH7750_A7_REG32(SH7750_WCR2_REGOFS)
+
+#define SH7750_WCR2_A6W       0xE0000000       /* Area 6 Wait Control */
+#define SH7750_WCR2_A6W_S     29
+#define SH7750_WCR2_A6B       0x1C000000       /* Area 6 Burst Pitch */
+#define SH7750_WCR2_A6B_S     26
+#define SH7750_WCR2_A5W       0x03800000       /* Area 5 Wait Control */
+#define SH7750_WCR2_A5W_S     23
+#define SH7750_WCR2_A5B       0x00700000       /* Area 5 Burst Pitch */
+#define SH7750_WCR2_A5B_S     20
+#define SH7750_WCR2_A4W       0x000E0000       /* Area 4 Wait Control */
+#define SH7750_WCR2_A4W_S     17
+#define SH7750_WCR2_A3W       0x0000E000       /* Area 3 Wait Control */
+#define SH7750_WCR2_A3W_S     13
+#define SH7750_WCR2_A2W       0x00000E00       /* Area 2 Wait Control */
+#define SH7750_WCR2_A2W_S     9
+#define SH7750_WCR2_A1W       0x000001C0       /* Area 1 Wait Control */
+#define SH7750_WCR2_A1W_S     6
+#define SH7750_WCR2_A0W       0x00000038       /* Area 0 Wait Control */
+#define SH7750_WCR2_A0W_S     3
+#define SH7750_WCR2_A0B       0x00000007       /* Area 0 Burst Pitch */
+#define SH7750_WCR2_A0B_S     0
+
+#define SH7750_WCR2_WS0       0        /* 0 wait states inserted */
+#define SH7750_WCR2_WS1       1        /* 1 wait states inserted */
+#define SH7750_WCR2_WS2       2        /* 2 wait states inserted */
+#define SH7750_WCR2_WS3       3        /* 3 wait states inserted */
+#define SH7750_WCR2_WS6       4        /* 6 wait states inserted */
+#define SH7750_WCR2_WS9       5        /* 9 wait states inserted */
+#define SH7750_WCR2_WS12      6        /* 12 wait states inserted */
+#define SH7750_WCR2_WS15      7        /* 15 wait states inserted */
+
+#define SH7750_WCR2_BPWS0     0        /* 0 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS1     1        /* 1 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS2     2        /* 2 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS3     3        /* 3 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS4     4        /* 4 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS5     5        /* 5 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS6     6        /* 6 wait states inserted from 2nd access */
+#define SH7750_WCR2_BPWS7     7        /* 7 wait states inserted from 2nd access */
+
+/* DRAM CAS\ Assertion Delay (area 3,2) */
+#define SH7750_WCR2_DRAM_CAS_ASW1   0  /* 1 cycle */
+#define SH7750_WCR2_DRAM_CAS_ASW2   1  /* 2 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW3   2  /* 3 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW4   3  /* 4 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW7   4  /* 7 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW10  5  /* 10 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW13  6  /* 13 cycles */
+#define SH7750_WCR2_DRAM_CAS_ASW16  7  /* 16 cycles */
+
+/* SDRAM CAS\ Latency Cycles */
+#define SH7750_WCR2_SDRAM_CAS_LAT1  1  /* 1 cycle */
+#define SH7750_WCR2_SDRAM_CAS_LAT2  2  /* 2 cycles */
+#define SH7750_WCR2_SDRAM_CAS_LAT3  3  /* 3 cycles */
+#define SH7750_WCR2_SDRAM_CAS_LAT4  4  /* 4 cycles */
+#define SH7750_WCR2_SDRAM_CAS_LAT5  5  /* 5 cycles */
+
+/* Wait Control Register 3 - WCR3 */
+#define SH7750_WCR3_REGOFS    0x800010 /* offset */
+#define SH7750_WCR3           SH7750_P4_REG32(SH7750_WCR3_REGOFS)
+#define SH7750_WCR3_A7        SH7750_A7_REG32(SH7750_WCR3_REGOFS)
+
+#define SH7750_WCR3_A6S       0x04000000       /* Area 6 Write Strobe Setup time */
+#define SH7750_WCR3_A6H       0x03000000       /* Area 6 Data Hold Time */
+#define SH7750_WCR3_A6H_S     24
+#define SH7750_WCR3_A5S       0x00400000       /* Area 5 Write Strobe Setup time */
+#define SH7750_WCR3_A5H       0x00300000       /* Area 5 Data Hold Time */
+#define SH7750_WCR3_A5H_S     20
+#define SH7750_WCR3_A4S       0x00040000       /* Area 4 Write Strobe Setup time */
+#define SH7750_WCR3_A4H       0x00030000       /* Area 4 Data Hold Time */
+#define SH7750_WCR3_A4H_S     16
+#define SH7750_WCR3_A3S       0x00004000       /* Area 3 Write Strobe Setup time */
+#define SH7750_WCR3_A3H       0x00003000       /* Area 3 Data Hold Time */
+#define SH7750_WCR3_A3H_S     12
+#define SH7750_WCR3_A2S       0x00000400       /* Area 2 Write Strobe Setup time */
+#define SH7750_WCR3_A2H       0x00000300       /* Area 2 Data Hold Time */
+#define SH7750_WCR3_A2H_S     8
+#define SH7750_WCR3_A1S       0x00000040       /* Area 1 Write Strobe Setup time */
+#define SH7750_WCR3_A1H       0x00000030       /* Area 1 Data Hold Time */
+#define SH7750_WCR3_A1H_S     4
+#define SH7750_WCR3_A0S       0x00000004       /* Area 0 Write Strobe Setup time */
+#define SH7750_WCR3_A0H       0x00000003       /* Area 0 Data Hold Time */
+#define SH7750_WCR3_A0H_S     0
+
+#define SH7750_WCR3_DHWS_0    0        /* 0 wait states data hold time */
+#define SH7750_WCR3_DHWS_1    1        /* 1 wait states data hold time */
+#define SH7750_WCR3_DHWS_2    2        /* 2 wait states data hold time */
+#define SH7750_WCR3_DHWS_3    3        /* 3 wait states data hold time */
+
+#define SH7750_MCR_REGOFS     0x800014 /* offset */
+#define SH7750_MCR            SH7750_P4_REG32(SH7750_MCR_REGOFS)
+#define SH7750_MCR_A7         SH7750_A7_REG32(SH7750_MCR_REGOFS)
+
+#define SH7750_MCR_RASD       0x80000000       /* RAS Down mode */
+#define SH7750_MCR_MRSET      0x40000000       /* SDRAM Mode Register Set */
+#define SH7750_MCR_PALL       0x00000000       /* SDRAM Precharge All cmd. Mode */
+#define SH7750_MCR_TRC        0x38000000       /* RAS Precharge Time at End of
+                                                  Refresh: */
+#define SH7750_MCR_TRC_0      0x00000000       /*    0 */
+#define SH7750_MCR_TRC_3      0x08000000       /*    3 */
+#define SH7750_MCR_TRC_6      0x10000000       /*    6 */
+#define SH7750_MCR_TRC_9      0x18000000       /*    9 */
+#define SH7750_MCR_TRC_12     0x20000000       /*    12 */
+#define SH7750_MCR_TRC_15     0x28000000       /*    15 */
+#define SH7750_MCR_TRC_18     0x30000000       /*    18 */
+#define SH7750_MCR_TRC_21     0x38000000       /*    21 */
+
+#define SH7750_MCR_TCAS       0x00800000       /* CAS Negation Period */
+#define SH7750_MCR_TCAS_1     0x00000000       /*    1 */
+#define SH7750_MCR_TCAS_2     0x00800000       /*    2 */
+
+#define SH7750_MCR_TPC        0x00380000       /* DRAM: RAS Precharge Period 
+                                                  SDRAM: minimum number of cycles
+                                                  until the next bank active cmd
+                                                  is output after precharging */
+#define SH7750_MCR_TPC_S      19
+#define SH7750_MCR_TPC_SDRAM_1 0x00000000      /* 1 cycle */
+#define SH7750_MCR_TPC_SDRAM_2 0x00080000      /* 2 cycles */
+#define SH7750_MCR_TPC_SDRAM_3 0x00100000      /* 3 cycles */
+#define SH7750_MCR_TPC_SDRAM_4 0x00180000      /* 4 cycles */
+#define SH7750_MCR_TPC_SDRAM_5 0x00200000      /* 5 cycles */
+#define SH7750_MCR_TPC_SDRAM_6 0x00280000      /* 6 cycles */
+#define SH7750_MCR_TPC_SDRAM_7 0x00300000      /* 7 cycles */
+#define SH7750_MCR_TPC_SDRAM_8 0x00380000      /* 8 cycles */
+
+#define SH7750_MCR_RCD        0x00030000       /* DRAM: RAS-CAS Assertion Delay time
+                                                  SDRAM: bank active-read/write cmd
+                                                  delay time */
+#define SH7750_MCR_RCD_DRAM_2  0x00000000      /* DRAM delay 2 clocks */
+#define SH7750_MCR_RCD_DRAM_3  0x00010000      /* DRAM delay 3 clocks */
+#define SH7750_MCR_RCD_DRAM_4  0x00020000      /* DRAM delay 4 clocks */
+#define SH7750_MCR_RCD_DRAM_5  0x00030000      /* DRAM delay 5 clocks */
+#define SH7750_MCR_RCD_SDRAM_2 0x00010000      /* DRAM delay 2 clocks */
+#define SH7750_MCR_RCD_SDRAM_3 0x00020000      /* DRAM delay 3 clocks */
+#define SH7750_MCR_RCD_SDRAM_4 0x00030000      /* DRAM delay 4 clocks */
+
+#define SH7750_MCR_TRWL       0x0000E000       /* SDRAM Write Precharge Delay */
+#define SH7750_MCR_TRWL_1     0x00000000       /*    1 */
+#define SH7750_MCR_TRWL_2     0x00002000       /*    2 */
+#define SH7750_MCR_TRWL_3     0x00004000       /*    3 */
+#define SH7750_MCR_TRWL_4     0x00006000       /*    4 */
+#define SH7750_MCR_TRWL_5     0x00008000       /*    5 */
+
+#define SH7750_MCR_TRAS       0x00001C00       /* DRAM: CAS-Before-RAS Refresh RAS
+                                                  asserting period
+                                                  SDRAM: Command interval after
+                                                  synchronous DRAM refresh */
+#define SH7750_MCR_TRAS_DRAM_2         0x00000000      /* 2 */
+#define SH7750_MCR_TRAS_DRAM_3         0x00000400      /* 3 */
+#define SH7750_MCR_TRAS_DRAM_4         0x00000800      /* 4 */
+#define SH7750_MCR_TRAS_DRAM_5         0x00000C00      /* 5 */
+#define SH7750_MCR_TRAS_DRAM_6         0x00001000      /* 6 */
+#define SH7750_MCR_TRAS_DRAM_7         0x00001400      /* 7 */
+#define SH7750_MCR_TRAS_DRAM_8         0x00001800      /* 8 */
+#define SH7750_MCR_TRAS_DRAM_9         0x00001C00      /* 9 */
+
+#define SH7750_MCR_TRAS_SDRAM_TRC_4    0x00000000      /* 4 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_5    0x00000400      /* 5 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_6    0x00000800      /* 6 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_7    0x00000C00      /* 7 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_8    0x00001000      /* 8 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_9    0x00001400      /* 9 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_10   0x00001800      /* 10 + TRC */
+#define SH7750_MCR_TRAS_SDRAM_TRC_11   0x00001C00      /* 11 + TRC */
+
+#define SH7750_MCR_BE         0x00000200       /* Burst Enable */
+#define SH7750_MCR_SZ         0x00000180       /* Memory Data Size */
+#define SH7750_MCR_SZ_64      0x00000000       /*    64 bits */
+#define SH7750_MCR_SZ_16      0x00000100       /*    16 bits */
+#define SH7750_MCR_SZ_32      0x00000180       /*    32 bits */
+
+#define SH7750_MCR_AMX        0x00000078       /* Address Multiplexing */
+#define SH7750_MCR_AMX_S      3
+#define SH7750_MCR_AMX_DRAM_8BIT_COL    0x00000000     /* 8-bit column addr */
+#define SH7750_MCR_AMX_DRAM_9BIT_COL    0x00000008     /* 9-bit column addr */
+#define SH7750_MCR_AMX_DRAM_10BIT_COL   0x00000010     /* 10-bit column addr */
+#define SH7750_MCR_AMX_DRAM_11BIT_COL   0x00000018     /* 11-bit column addr */
+#define SH7750_MCR_AMX_DRAM_12BIT_COL   0x00000020     /* 12-bit column addr */
+/* See SH7750 Hardware Manual for SDRAM address multiplexor selection */
+
+#define SH7750_MCR_RFSH       0x00000004       /* Refresh Control */
+#define SH7750_MCR_RMODE      0x00000002       /* Refresh Mode: */
+#define SH7750_MCR_RMODE_NORMAL 0x00000000     /* Normal Refresh Mode */
+#define SH7750_MCR_RMODE_SELF   0x00000002     /* Self-Refresh Mode */
+#define SH7750_MCR_RMODE_EDO    0x00000001     /* EDO Mode */
+
+/* SDRAM Mode Set address */
+#define SH7750_SDRAM_MODE_A2_BASE  0xFF900000
+#define SH7750_SDRAM_MODE_A3_BASE  0xFF940000
+#define SH7750_SDRAM_MODE_A2_32BIT(x) (SH7750_SDRAM_MODE_A2_BASE + ((x) << 2))
+#define SH7750_SDRAM_MODE_A3_32BIT(x) (SH7750_SDRAM_MODE_A3_BASE + ((x) << 2))
+#define SH7750_SDRAM_MODE_A2_64BIT(x) (SH7750_SDRAM_MODE_A2_BASE + ((x) << 3))
+#define SH7750_SDRAM_MODE_A3_64BIT(x) (SH7750_SDRAM_MODE_A3_BASE + ((x) << 3))
+
+
+/* PCMCIA Control Register (half) - PCR */
+#define SH7750_PCR_REGOFS     0x800018 /* offset */
+#define SH7750_PCR            SH7750_P4_REG32(SH7750_PCR_REGOFS)
+#define SH7750_PCR_A7         SH7750_A7_REG32(SH7750_PCR_REGOFS)
+
+#define SH7750_PCR_A5PCW      0xC000   /* Area 5 PCMCIA Wait - Number of wait
+                                          states to be added to the number of
+                                          waits specified by WCR2 in a low-speed
+                                          PCMCIA wait cycle */
+#define SH7750_PCR_A5PCW_0    0x0000   /*    0 waits inserted */
+#define SH7750_PCR_A5PCW_15   0x4000   /*    15 waits inserted */
+#define SH7750_PCR_A5PCW_30   0x8000   /*    30 waits inserted */
+#define SH7750_PCR_A5PCW_50   0xC000   /*    50 waits inserted */
+
+#define SH7750_PCR_A6PCW      0x3000   /* Area 6 PCMCIA Wait - Number of wait
+                                          states to be added to the number of
+                                          waits specified by WCR2 in a low-speed
+                                          PCMCIA wait cycle */
+#define SH7750_PCR_A6PCW_0    0x0000   /*    0 waits inserted */
+#define SH7750_PCR_A6PCW_15   0x1000   /*    15 waits inserted */
+#define SH7750_PCR_A6PCW_30   0x2000   /*    30 waits inserted */
+#define SH7750_PCR_A6PCW_50   0x3000   /*    50 waits inserted */
+
+#define SH7750_PCR_A5TED      0x0E00   /* Area 5 Address-OE\/WE\ Assertion Delay,
+                                          delay time from address output to
+                                          OE\/WE\ assertion on the connected
+                                          PCMCIA interface */
+#define SH7750_PCR_A5TED_S    9
+#define SH7750_PCR_A6TED      0x01C0   /* Area 6 Address-OE\/WE\ Assertion Delay */
+#define SH7750_PCR_A6TED_S    6
+
+#define SH7750_PCR_TED_0WS    0        /* 0 Waits inserted */
+#define SH7750_PCR_TED_1WS    1        /* 1 Waits inserted */
+#define SH7750_PCR_TED_2WS    2        /* 2 Waits inserted */
+#define SH7750_PCR_TED_3WS    3        /* 3 Waits inserted */
+#define SH7750_PCR_TED_6WS    4        /* 6 Waits inserted */
+#define SH7750_PCR_TED_9WS    5        /* 9 Waits inserted */
+#define SH7750_PCR_TED_12WS   6        /* 12 Waits inserted */
+#define SH7750_PCR_TED_15WS   7        /* 15 Waits inserted */
+
+#define SH7750_PCR_A5TEH      0x0038   /* Area 5 OE\/WE\ Negation Address delay,
+                                          address hold delay time from OE\/WE\
+                                          negation in a write on the connected
+                                          PCMCIA interface */
+#define SH7750_PCR_A5TEH_S    3
+
+#define SH7750_PCR_A6TEH      0x0007   /* Area 6 OE\/WE\ Negation Address delay */
+#define SH7750_PCR_A6TEH_S    0
+
+#define SH7750_PCR_TEH_0WS    0        /* 0 Waits inserted */
+#define SH7750_PCR_TEH_1WS    1        /* 1 Waits inserted */
+#define SH7750_PCR_TEH_2WS    2        /* 2 Waits inserted */
+#define SH7750_PCR_TEH_3WS    3        /* 3 Waits inserted */
+#define SH7750_PCR_TEH_6WS    4        /* 6 Waits inserted */
+#define SH7750_PCR_TEH_9WS    5        /* 9 Waits inserted */
+#define SH7750_PCR_TEH_12WS   6        /* 12 Waits inserted */
+#define SH7750_PCR_TEH_15WS   7        /* 15 Waits inserted */
+
+/* Refresh Timer Control/Status Register (half) - RTSCR */
+#define SH7750_RTCSR_REGOFS   0x80001C /* offset */
+#define SH7750_RTCSR          SH7750_P4_REG32(SH7750_RTCSR_REGOFS)
+#define SH7750_RTCSR_A7       SH7750_A7_REG32(SH7750_RTCSR_REGOFS)
+
+#define SH7750_RTCSR_KEY      0xA500   /* RTCSR write key */
+#define SH7750_RTCSR_CMF      0x0080   /* Compare-Match Flag (indicates a
+                                          match between the refresh timer
+                                          counter and refresh time constant) */
+#define SH7750_RTCSR_CMIE     0x0040   /* Compare-Match Interrupt Enable */
+#define SH7750_RTCSR_CKS      0x0038   /* Refresh Counter Clock Selects */
+#define SH7750_RTCSR_CKS_DIS          0x0000   /* Clock Input Disabled */
+#define SH7750_RTCSR_CKS_CKIO_DIV4    0x0008   /* Bus Clock / 4 */
+#define SH7750_RTCSR_CKS_CKIO_DIV16   0x0010   /* Bus Clock / 16 */
+#define SH7750_RTCSR_CKS_CKIO_DIV64   0x0018   /* Bus Clock / 64 */
+#define SH7750_RTCSR_CKS_CKIO_DIV256  0x0020   /* Bus Clock / 256 */
+#define SH7750_RTCSR_CKS_CKIO_DIV1024 0x0028   /* Bus Clock / 1024 */
+#define SH7750_RTCSR_CKS_CKIO_DIV2048 0x0030   /* Bus Clock / 2048 */
+#define SH7750_RTCSR_CKS_CKIO_DIV4096 0x0038   /* Bus Clock / 4096 */
+
+#define SH7750_RTCSR_OVF      0x0004   /* Refresh Count Overflow Flag */
+#define SH7750_RTCSR_OVIE     0x0002   /* Refresh Count Overflow Interrupt
+                                          Enable */
+#define SH7750_RTCSR_LMTS     0x0001   /* Refresh Count Overflow Limit Select */
+#define SH7750_RTCSR_LMTS_1024 0x0000  /* Count Limit is 1024 */
+#define SH7750_RTCSR_LMTS_512  0x0001  /* Count Limit is 512 */
+
+/* Refresh Timer Counter (half) - RTCNT */
+#define SH7750_RTCNT_REGOFS   0x800020 /* offset */
+#define SH7750_RTCNT          SH7750_P4_REG32(SH7750_RTCNT_REGOFS)
+#define SH7750_RTCNT_A7       SH7750_A7_REG32(SH7750_RTCNT_REGOFS)
+
+#define SH7750_RTCNT_KEY      0xA500   /* RTCNT write key */
+
+/* Refresh Time Constant Register (half) - RTCOR */
+#define SH7750_RTCOR_REGOFS   0x800024 /* offset */
+#define SH7750_RTCOR          SH7750_P4_REG32(SH7750_RTCOR_REGOFS)
+#define SH7750_RTCOR_A7       SH7750_A7_REG32(SH7750_RTCOR_REGOFS)
+
+#define SH7750_RTCOR_KEY      0xA500   /* RTCOR write key */
+
+/* Refresh Count Register (half) - RFCR */
+#define SH7750_RFCR_REGOFS    0x800028 /* offset */
+#define SH7750_RFCR           SH7750_P4_REG32(SH7750_RFCR_REGOFS)
+#define SH7750_RFCR_A7        SH7750_A7_REG32(SH7750_RFCR_REGOFS)
+
+#define SH7750_RFCR_KEY       0xA400   /* RFCR write key */
+
+/*
+ * Direct Memory Access Controller (DMAC)
+ */
+
+/* DMA Source Address Register - SAR0, SAR1, SAR2, SAR3 */
+#define SH7750_SAR_REGOFS(n)  (0xA00000 + ((n)*16))    /* offset */
+#define SH7750_SAR(n)         SH7750_P4_REG32(SH7750_SAR_REGOFS(n))
+#define SH7750_SAR_A7(n)      SH7750_A7_REG32(SH7750_SAR_REGOFS(n))
+#define SH7750_SAR0           SH7750_SAR(0)
+#define SH7750_SAR1           SH7750_SAR(1)
+#define SH7750_SAR2           SH7750_SAR(2)
+#define SH7750_SAR3           SH7750_SAR(3)
+#define SH7750_SAR0_A7        SH7750_SAR_A7(0)
+#define SH7750_SAR1_A7        SH7750_SAR_A7(1)
+#define SH7750_SAR2_A7        SH7750_SAR_A7(2)
+#define SH7750_SAR3_A7        SH7750_SAR_A7(3)
+
+/* DMA Destination Address Register - DAR0, DAR1, DAR2, DAR3 */
+#define SH7750_DAR_REGOFS(n)  (0xA00004 + ((n)*16))    /* offset */
+#define SH7750_DAR(n)         SH7750_P4_REG32(SH7750_DAR_REGOFS(n))
+#define SH7750_DAR_A7(n)      SH7750_A7_REG32(SH7750_DAR_REGOFS(n))
+#define SH7750_DAR0           SH7750_DAR(0)
+#define SH7750_DAR1           SH7750_DAR(1)
+#define SH7750_DAR2           SH7750_DAR(2)
+#define SH7750_DAR3           SH7750_DAR(3)
+#define SH7750_DAR0_A7        SH7750_DAR_A7(0)
+#define SH7750_DAR1_A7        SH7750_DAR_A7(1)
+#define SH7750_DAR2_A7        SH7750_DAR_A7(2)
+#define SH7750_DAR3_A7        SH7750_DAR_A7(3)
+
+/* DMA Transfer Count Register - DMATCR0, DMATCR1, DMATCR2, DMATCR3 */
+#define SH7750_DMATCR_REGOFS(n)  (0xA00008 + ((n)*16)) /* offset */
+#define SH7750_DMATCR(n)      SH7750_P4_REG32(SH7750_DMATCR_REGOFS(n))
+#define SH7750_DMATCR_A7(n)   SH7750_A7_REG32(SH7750_DMATCR_REGOFS(n))
+#define SH7750_DMATCR0_P4     SH7750_DMATCR(0)
+#define SH7750_DMATCR1_P4     SH7750_DMATCR(1)
+#define SH7750_DMATCR2_P4     SH7750_DMATCR(2)
+#define SH7750_DMATCR3_P4     SH7750_DMATCR(3)
+#define SH7750_DMATCR0_A7     SH7750_DMATCR_A7(0)
+#define SH7750_DMATCR1_A7     SH7750_DMATCR_A7(1)
+#define SH7750_DMATCR2_A7     SH7750_DMATCR_A7(2)
+#define SH7750_DMATCR3_A7     SH7750_DMATCR_A7(3)
+
+/* DMA Channel Control Register - CHCR0, CHCR1, CHCR2, CHCR3 */
+#define SH7750_CHCR_REGOFS(n)  (0xA0000C + ((n)*16))   /* offset */
+#define SH7750_CHCR(n)        SH7750_P4_REG32(SH7750_CHCR_REGOFS(n))
+#define SH7750_CHCR_A7(n)     SH7750_A7_REG32(SH7750_CHCR_REGOFS(n))
+#define SH7750_CHCR0          SH7750_CHCR(0)
+#define SH7750_CHCR1          SH7750_CHCR(1)
+#define SH7750_CHCR2          SH7750_CHCR(2)
+#define SH7750_CHCR3          SH7750_CHCR(3)
+#define SH7750_CHCR0_A7       SH7750_CHCR_A7(0)
+#define SH7750_CHCR1_A7       SH7750_CHCR_A7(1)
+#define SH7750_CHCR2_A7       SH7750_CHCR_A7(2)
+#define SH7750_CHCR3_A7       SH7750_CHCR_A7(3)
+
+#define SH7750_CHCR_SSA       0xE0000000       /* Source Address Space Attribute */
+#define SH7750_CHCR_SSA_PCMCIA  0x00000000     /* Reserved in PCMCIA access */
+#define SH7750_CHCR_SSA_DYNBSZ  0x20000000     /* Dynamic Bus Sizing I/O space */
+#define SH7750_CHCR_SSA_IO8     0x40000000     /* 8-bit I/O space */
+#define SH7750_CHCR_SSA_IO16    0x60000000     /* 16-bit I/O space */
+#define SH7750_CHCR_SSA_CMEM8   0x80000000     /* 8-bit common memory space */
+#define SH7750_CHCR_SSA_CMEM16  0xA0000000     /* 16-bit common memory space */
+#define SH7750_CHCR_SSA_AMEM8   0xC0000000     /* 8-bit attribute memory space */
+#define SH7750_CHCR_SSA_AMEM16  0xE0000000     /* 16-bit attribute memory space */
+
+#define SH7750_CHCR_STC       0x10000000       /* Source Address Wait Control Select,
+                                                  specifies CS5 or CS6 space wait
+                                                  control for PCMCIA access */
+
+#define SH7750_CHCR_DSA       0x0E000000       /* Source Address Space Attribute */
+#define SH7750_CHCR_DSA_PCMCIA  0x00000000     /* Reserved in PCMCIA access */
+#define SH7750_CHCR_DSA_DYNBSZ  0x02000000     /* Dynamic Bus Sizing I/O space */
+#define SH7750_CHCR_DSA_IO8     0x04000000     /* 8-bit I/O space */
+#define SH7750_CHCR_DSA_IO16    0x06000000     /* 16-bit I/O space */
+#define SH7750_CHCR_DSA_CMEM8   0x08000000     /* 8-bit common memory space */
+#define SH7750_CHCR_DSA_CMEM16  0x0A000000     /* 16-bit common memory space */
+#define SH7750_CHCR_DSA_AMEM8   0x0C000000     /* 8-bit attribute memory space */
+#define SH7750_CHCR_DSA_AMEM16  0x0E000000     /* 16-bit attribute memory space */
+
+#define SH7750_CHCR_DTC       0x01000000       /* Destination Address Wait Control
+                                                  Select, specifies CS5 or CS6 
+                                                  space wait control for PCMCIA
+                                                  access */
+
+#define SH7750_CHCR_DS        0x00080000       /* DREQ\ Select : */
+#define SH7750_CHCR_DS_LOWLVL 0x00000000       /*     Low Level Detection */
+#define SH7750_CHCR_DS_FALL   0x00080000       /*     Falling Edge Detection */
+
+#define SH7750_CHCR_RL        0x00040000       /* Request Check Level: */
+#define SH7750_CHCR_RL_ACTH   0x00000000       /*     DRAK is an active high out */
+#define SH7750_CHCR_RL_ACTL   0x00040000       /*     DRAK is an active low out */
+
+#define SH7750_CHCR_AM        0x00020000       /* Acknowledge Mode: */
+#define SH7750_CHCR_AM_RD     0x00000000       /*     DACK is output in read cycle */
+#define SH7750_CHCR_AM_WR     0x00020000       /*     DACK is output in write cycle */
+
+#define SH7750_CHCR_AL        0x00010000       /* Acknowledge Level: */
+#define SH7750_CHCR_AL_ACTH   0x00000000       /*     DACK is an active high out */
+#define SH7750_CHCR_AL_ACTL   0x00010000       /*     DACK is an active low out */
+
+#define SH7750_CHCR_DM        0x0000C000       /* Destination Address Mode: */
+#define SH7750_CHCR_DM_FIX    0x00000000       /*     Destination Addr Fixed */
+#define SH7750_CHCR_DM_INC    0x00004000       /*     Destination Addr Incremented */
+#define SH7750_CHCR_DM_DEC    0x00008000       /*     Destination Addr Decremented */
+
+#define SH7750_CHCR_SM        0x00003000       /* Source Address Mode: */
+#define SH7750_CHCR_SM_FIX    0x00000000       /*     Source Addr Fixed */
+#define SH7750_CHCR_SM_INC    0x00001000       /*     Source Addr Incremented */
+#define SH7750_CHCR_SM_DEC    0x00002000       /*     Source Addr Decremented */
+
+#define SH7750_CHCR_RS        0x00000F00       /* Request Source Select: */
+#define SH7750_CHCR_RS_ER_DA_EA_TO_EA   0x000  /* External Request, Dual Address
+                                                  Mode (External Addr Space->
+                                                  External Addr Space) */
+#define SH7750_CHCR_RS_ER_SA_EA_TO_ED   0x200  /* External Request, Single
+                                                  Address Mode (External Addr
+                                                  Space -> External Device) */
+#define SH7750_CHCR_RS_ER_SA_ED_TO_EA   0x300  /* External Request, Single
+                                                  Address Mode, (External 
+                                                  Device -> External Addr 
+                                                  Space) */
+#define SH7750_CHCR_RS_AR_EA_TO_EA      0x400  /* Auto-Request (External Addr
+                                                  Space -> External Addr Space) */
+
+#define SH7750_CHCR_RS_AR_EA_TO_OCP     0x500  /* Auto-Request (External Addr
+                                                  Space -> On-chip Peripheral
+                                                  Module) */
+#define SH7750_CHCR_RS_AR_OCP_TO_EA     0x600  /* Auto-Request (On-chip 
+                                                  Peripheral Module ->
+                                                  External Addr Space */
+#define SH7750_CHCR_RS_SCITX_EA_TO_SC   0x800  /* SCI Transmit-Data-Empty intr
+                                                  transfer request (external
+                                                  address space -> SCTDR1) */
+#define SH7750_CHCR_RS_SCIRX_SC_TO_EA   0x900  /* SCI Receive-Data-Full intr
+                                                  transfer request (SCRDR1 ->
+                                                  External Addr Space) */
+#define SH7750_CHCR_RS_SCIFTX_EA_TO_SC  0xA00  /* SCIF Transmit-Data-Empty intr
+                                                  transfer request (external
+                                                  address space -> SCFTDR1) */
+#define SH7750_CHCR_RS_SCIFRX_SC_TO_EA  0xB00  /* SCIF Receive-Data-Full intr
+                                                  transfer request (SCFRDR2 ->
+                                                  External Addr Space) */
+#define SH7750_CHCR_RS_TMU2_EA_TO_EA    0xC00  /* TMU Channel 2 (input capture
+                                                  interrupt), (external address
+                                                  space -> external address
+                                                  space) */
+#define SH7750_CHCR_RS_TMU2_EA_TO_OCP   0xD00  /* TMU Channel 2 (input capture
+                                                  interrupt), (external address
+                                                  space -> on-chip peripheral
+                                                  module) */
+#define SH7750_CHCR_RS_TMU2_OCP_TO_EA   0xE00  /* TMU Channel 2 (input capture
+                                                  interrupt), (on-chip
+                                                  peripheral module -> external
+                                                  address space) */
+
+#define SH7750_CHCR_TM        0x00000080       /* Transmit mode: */
+#define SH7750_CHCR_TM_CSTEAL 0x00000000       /*     Cycle Steal Mode */
+#define SH7750_CHCR_TM_BURST  0x00000080       /*     Burst Mode */
+
+#define SH7750_CHCR_TS        0x00000070       /* Transmit Size: */
+#define SH7750_CHCR_TS_QUAD   0x00000000       /*     Quadword Size (64 bits) */
+#define SH7750_CHCR_TS_BYTE   0x00000010       /*     Byte Size (8 bit) */
+#define SH7750_CHCR_TS_WORD   0x00000020       /*     Word Size (16 bit) */
+#define SH7750_CHCR_TS_LONG   0x00000030       /*     Longword Size (32 bit) */
+#define SH7750_CHCR_TS_BLOCK  0x00000040       /*     32-byte block transfer */
+
+#define SH7750_CHCR_IE        0x00000004       /* Interrupt Enable */
+#define SH7750_CHCR_TE        0x00000002       /* Transfer End */
+#define SH7750_CHCR_DE        0x00000001       /* DMAC Enable */
+
+/* DMA Operation Register - DMAOR */
+#define SH7750_DMAOR_REGOFS   0xA00040 /* offset */
+#define SH7750_DMAOR          SH7750_P4_REG32(SH7750_DMAOR_REGOFS)
+#define SH7750_DMAOR_A7       SH7750_A7_REG32(SH7750_DMAOR_REGOFS)
+
+#define SH7750_DMAOR_DDT      0x00008000       /* On-Demand Data Transfer Mode */
+
+#define SH7750_DMAOR_PR       0x00000300       /* Priority Mode: */
+#define SH7750_DMAOR_PR_0123  0x00000000       /*     CH0 > CH1 > CH2 > CH3 */
+#define SH7750_DMAOR_PR_0231  0x00000100       /*     CH0 > CH2 > CH3 > CH1 */
+#define SH7750_DMAOR_PR_2013  0x00000200       /*     CH2 > CH0 > CH1 > CH3 */
+#define SH7750_DMAOR_PR_RR    0x00000300       /*     Round-robin mode */
+
+#define SH7750_DMAOR_COD      0x00000010       /* Check Overrun for DREQ\ */
+#define SH7750_DMAOR_AE       0x00000004       /* Address Error flag */
+#define SH7750_DMAOR_NMIF     0x00000002       /* NMI Flag */
+#define SH7750_DMAOR_DME      0x00000001       /* DMAC Master Enable */
+
+/*
+ * Serial Communication Interface - SCI
+ * Serial Communication Interface with FIFO - SCIF
+ */
+/* SCI Receive Data Register (byte, read-only) - SCRDR1, SCFRDR2 */
+#define SH7750_SCRDR_REGOFS(n) ((n) == 1 ? 0xE00014 : 0xE80014)        /* offset */
+#define SH7750_SCRDR(n)       SH7750_P4_REG32(SH7750_SCRDR_REGOFS(n))
+#define SH7750_SCRDR1         SH7750_SCRDR(1)
+#define SH7750_SCRDR2         SH7750_SCRDR(2)
+#define SH7750_SCRDR_A7(n)    SH7750_A7_REG32(SH7750_SCRDR_REGOFS(n))
+#define SH7750_SCRDR1_A7      SH7750_SCRDR_A7(1)
+#define SH7750_SCRDR2_A7      SH7750_SCRDR_A7(2)
+
+/* SCI Transmit Data Register (byte) - SCTDR1, SCFTDR2 */
+#define SH7750_SCTDR_REGOFS(n) ((n) == 1 ? 0xE0000C : 0xE8000C)        /* offset */
+#define SH7750_SCTDR(n)       SH7750_P4_REG32(SH7750_SCTDR_REGOFS(n))
+#define SH7750_SCTDR1         SH7750_SCTDR(1)
+#define SH7750_SCTDR2         SH7750_SCTDR(2)
+#define SH7750_SCTDR_A7(n)    SH7750_A7_REG32(SH7750_SCTDR_REGOFS(n))
+#define SH7750_SCTDR1_A7      SH7750_SCTDR_A7(1)
+#define SH7750_SCTDR2_A7      SH7750_SCTDR_A7(2)
+
+/* SCI Serial Mode Register - SCSMR1(byte), SCSMR2(half) */
+#define SH7750_SCSMR_REGOFS(n) ((n) == 1 ? 0xE00000 : 0xE80000)        /* offset */
+#define SH7750_SCSMR(n)       SH7750_P4_REG32(SH7750_SCSMR_REGOFS(n))
+#define SH7750_SCSMR1         SH7750_SCSMR(1)
+#define SH7750_SCSMR2         SH7750_SCSMR(2)
+#define SH7750_SCSMR_A7(n)    SH7750_A7_REG32(SH7750_SCSMR_REGOFS(n))
+#define SH7750_SCSMR1_A7      SH7750_SCSMR_A7(1)
+#define SH7750_SCSMR2_A7      SH7750_SCSMR_A7(2)
+
+#define SH7750_SCSMR1_CA       0x80    /* Communication Mode (C/A\): */
+#define SH7750_SCSMR1_CA_ASYNC 0x00    /*     Asynchronous Mode */
+#define SH7750_SCSMR1_CA_SYNC  0x80    /*     Synchronous Mode */
+#define SH7750_SCSMR_CHR       0x40    /* Character Length: */
+#define SH7750_SCSMR_CHR_8     0x00    /*     8-bit data */
+#define SH7750_SCSMR_CHR_7     0x40    /*     7-bit data */
+#define SH7750_SCSMR_PE        0x20    /* Parity Enable */
+#define SH7750_SCSMR_PM        0x10    /* Parity Mode: */
+#define SH7750_SCSMR_PM_EVEN   0x00    /*     Even Parity */
+#define SH7750_SCSMR_PM_ODD    0x10    /*     Odd Parity */
+#define SH7750_SCSMR_STOP      0x08    /* Stop Bit Length: */
+#define SH7750_SCSMR_STOP_1    0x00    /*     1 stop bit */
+#define SH7750_SCSMR_STOP_2    0x08    /*     2 stop bit */
+#define SH7750_SCSMR1_MP       0x04    /* Multiprocessor Mode */
+#define SH7750_SCSMR_CKS       0x03    /* Clock Select */
+#define SH7750_SCSMR_CKS_S     0
+#define SH7750_SCSMR_CKS_DIV1  0x00    /*     Periph clock */
+#define SH7750_SCSMR_CKS_DIV4  0x01    /*     Periph clock / 4 */
+#define SH7750_SCSMR_CKS_DIV16 0x02    /*     Periph clock / 16 */
+#define SH7750_SCSMR_CKS_DIV64 0x03    /*     Periph clock / 64 */
+
+/* SCI Serial Control Register - SCSCR1(byte), SCSCR2(half) */
+#define SH7750_SCSCR_REGOFS(n) ((n) == 1 ? 0xE00008 : 0xE80008)        /* offset */
+#define SH7750_SCSCR(n)       SH7750_P4_REG32(SH7750_SCSCR_REGOFS(n))
+#define SH7750_SCSCR1         SH7750_SCSCR(1)
+#define SH7750_SCSCR2         SH7750_SCSCR(2)
+#define SH7750_SCSCR_A7(n)    SH7750_A7_REG32(SH7750_SCSCR_REGOFS(n))
+#define SH7750_SCSCR1_A7      SH7750_SCSCR_A7(1)
+#define SH7750_SCSCR2_A7      SH7750_SCSCR_A7(2)
+
+#define SH7750_SCSCR_TIE      0x80     /* Transmit Interrupt Enable */
+#define SH7750_SCSCR_RIE      0x40     /* Receive Interrupt Enable */
+#define SH7750_SCSCR_TE       0x20     /* Transmit Enable */
+#define SH7750_SCSCR_RE       0x10     /* Receive Enable */
+#define SH7750_SCSCR1_MPIE    0x08     /* Multiprocessor Interrupt Enable */
+#define SH7750_SCSCR2_REIE    0x08     /* Receive Error Interrupt Enable */
+#define SH7750_SCSCR1_TEIE    0x04     /* Transmit End Interrupt Enable */
+#define SH7750_SCSCR1_CKE     0x03     /* Clock Enable: */
+#define SH7750_SCSCR_CKE_INTCLK            0x00        /* Use Internal Clock */
+#define SH7750_SCSCR_CKE_EXTCLK            0x02        /* Use External Clock from SCK */
+#define SH7750_SCSCR1_CKE_ASYNC_SCK_CLKOUT 0x01        /* Use SCK as a clock output
+                                                  in asynchronous mode */
+
+/* SCI Serial Status Register - SCSSR1(byte), SCSFR2(half) */
+#define SH7750_SCSSR_REGOFS(n) ((n) == 1 ? 0xE00010 : 0xE80010)        /* offset */
+#define SH7750_SCSSR(n)       SH7750_P4_REG32(SH7750_SCSSR_REGOFS(n))
+#define SH7750_SCSSR1         SH7750_SCSSR(1)
+#define SH7750_SCSFR2         SH7750_SCSSR(2)
+#define SH7750_SCSSR_A7(n)    SH7750_A7_REG32(SH7750_SCSSR_REGOFS(n))
+#define SH7750_SCSSR1_A7      SH7750_SCSSR_A7(1)
+#define SH7750_SCSFR2_A7      SH7750_SCSSR_A7(2)
+
+#define SH7750_SCSSR1_TDRE    0x80     /* Transmit Data Register Empty */
+#define SH7750_SCSSR1_RDRF    0x40     /* Receive Data Register Full */
+#define SH7750_SCSSR1_ORER    0x20     /* Overrun Error */
+#define SH7750_SCSSR1_FER     0x10     /* Framing Error */
+#define SH7750_SCSSR1_PER     0x08     /* Parity Error */
+#define SH7750_SCSSR1_TEND    0x04     /* Transmit End */
+#define SH7750_SCSSR1_MPB     0x02     /* Multiprocessor Bit */
+#define SH7750_SCSSR1_MPBT    0x01     /* Multiprocessor Bit Transfer */
+
+#define SH7750_SCFSR2_PERN    0xF000   /* Number of Parity Errors */
+#define SH7750_SCFSR2_PERN_S  12
+#define SH7750_SCFSR2_FERN    0x0F00   /* Number of Framing Errors */
+#define SH7750_SCFSR2_FERN_S  8
+#define SH7750_SCFSR2_ER      0x0080   /* Receive Error */
+#define SH7750_SCFSR2_TEND    0x0040   /* Transmit End */
+#define SH7750_SCFSR2_TDFE    0x0020   /* Transmit FIFO Data Empty */
+#define SH7750_SCFSR2_BRK     0x0010   /* Break Detect */
+#define SH7750_SCFSR2_FER     0x0008   /* Framing Error */
+#define SH7750_SCFSR2_PER     0x0004   /* Parity Error */
+#define SH7750_SCFSR2_RDF     0x0002   /* Receive FIFO Data Full */
+#define SH7750_SCFSR2_DR      0x0001   /* Receive Data Ready */
+
+/* SCI Serial Port Register - SCSPTR1(byte) */
+#define SH7750_SCSPTR1_REGOFS 0xE0001C /* offset */
+#define SH7750_SCSPTR1        SH7750_P4_REG32(SH7750_SCSPTR1_REGOFS)
+#define SH7750_SCSPTR1_A7     SH7750_A7_REG32(SH7750_SCSPTR1_REGOFS)
+
+#define SH7750_SCSPTR1_EIO    0x80     /* Error Interrupt Only */
+#define SH7750_SCSPTR1_SPB1IO 0x08     /* 1: Output SPB1DT bit to SCK pin */
+#define SH7750_SCSPTR1_SPB1DT 0x04     /* Serial Port Clock Port Data */
+#define SH7750_SCSPTR1_SPB0IO 0x02     /* 1: Output SPB0DT bit to TxD pin */
+#define SH7750_SCSPTR1_SPB0DT 0x01     /* Serial Port Break Data */
+
+/* SCIF Serial Port Register - SCSPTR2(half) */
+#define SH7750_SCSPTR2_REGOFS 0xE80020 /* offset */
+#define SH7750_SCSPTR2        SH7750_P4_REG32(SH7750_SCSPTR2_REGOFS)
+#define SH7750_SCSPTR2_A7     SH7750_A7_REG32(SH7750_SCSPTR2_REGOFS)
+
+#define SH7750_SCSPTR2_RTSIO  0x80     /* 1: Output RTSDT bit to RTS2\ pin */
+#define SH7750_SCSPTR2_RTSDT  0x40     /* RTS Port Data */
+#define SH7750_SCSPTR2_CTSIO  0x20     /* 1: Output CTSDT bit to CTS2\ pin */
+#define SH7750_SCSPTR2_CTSDT  0x10     /* CTS Port Data */
+#define SH7750_SCSPTR2_SPB2IO 0x02     /* 1: Output SPBDT bit to TxD2 pin */
+#define SH7750_SCSPTR2_SPB2DT 0x01     /* Serial Port Break Data */
+
+/* SCI Bit Rate Register - SCBRR1(byte), SCBRR2(byte) */
+#define SH7750_SCBRR_REGOFS(n) ((n) == 1 ? 0xE00004 : 0xE80004)        /* offset */
+#define SH7750_SCBRR(n)       SH7750_P4_REG32(SH7750_SCBRR_REGOFS(n))
+#define SH7750_SCBRR1         SH7750_SCBRR_P4(1)
+#define SH7750_SCBRR2         SH7750_SCBRR_P4(2)
+#define SH7750_SCBRR_A7(n)    SH7750_A7_REG32(SH7750_SCBRR_REGOFS(n))
+#define SH7750_SCBRR1_A7      SH7750_SCBRR_A7(1)
+#define SH7750_SCBRR2_A7      SH7750_SCBRR_A7(2)
+
+/* SCIF FIFO Control Register - SCFCR2(half) */
+#define SH7750_SCFCR2_REGOFS  0xE80018 /* offset */
+#define SH7750_SCFCR2         SH7750_P4_REG32(SH7750_SCFCR2_REGOFS)
+#define SH7750_SCFCR2_A7      SH7750_A7_REG32(SH7750_SCFCR2_REGOFS)
+
+#define SH7750_SCFCR2_RSTRG   0x700    /* RTS2\ Output Active Trigger; RTS2\
+                                          signal goes to high level when the
+                                          number of received data stored in
+                                          FIFO exceeds the trigger number */
+#define SH7750_SCFCR2_RSTRG_15 0x000   /* 15 bytes */
+#define SH7750_SCFCR2_RSTRG_1  0x000   /* 1 byte */
+#define SH7750_SCFCR2_RSTRG_4  0x000   /* 4 bytes */
+#define SH7750_SCFCR2_RSTRG_6  0x000   /* 6 bytes */
+#define SH7750_SCFCR2_RSTRG_8  0x000   /* 8 bytes */
+#define SH7750_SCFCR2_RSTRG_10 0x000   /* 10 bytes */
+#define SH7750_SCFCR2_RSTRG_14 0x000   /* 14 bytes */
+
+#define SH7750_SCFCR2_RTRG    0x0C0    /* Receive FIFO Data Number Trigger,
+                                          Receive Data Full (RDF) Flag sets
+                                          when number of receive data bytes is
+                                          equal or greater than the trigger
+                                          number */
+#define SH7750_SCFCR2_RTRG_1  0x000    /* 1 byte */
+#define SH7750_SCFCR2_RTRG_4  0x040    /* 4 bytes */
+#define SH7750_SCFCR2_RTRG_8  0x080    /* 8 bytes */
+#define SH7750_SCFCR2_RTRG_14 0x0C0    /* 14 bytes */
+
+#define SH7750_SCFCR2_TTRG    0x030    /* Transmit FIFO Data Number Trigger,
+                                          Transmit FIFO Data Register Empty (TDFE)
+                                          flag sets when the number of remaining
+                                          transmit data bytes is equal or less
+                                          than the trigger number */
+#define SH7750_SCFCR2_TTRG_8  0x000    /* 8 bytes */
+#define SH7750_SCFCR2_TTRG_4  0x010    /* 4 bytes */
+#define SH7750_SCFCR2_TTRG_2  0x020    /* 2 bytes */
+#define SH7750_SCFCR2_TTRG_1  0x030    /* 1 byte */
+
+#define SH7750_SCFCR2_MCE     0x008    /* Modem Control Enable */
+#define SH7750_SCFCR2_TFRST   0x004    /* Transmit FIFO Data Register Reset,
+                                          invalidates the transmit data in the
+                                          transmit FIFO */
+#define SH7750_SCFCR2_RFRST   0x002    /* Receive FIFO Data Register Reset,
+                                          invalidates the receive data in the
+                                          receive FIFO data register and resets
+                                          it to the empty state */
+#define SH7750_SCFCR2_LOOP    0x001    /* Loopback Test */
+
+/* SCIF FIFO Data Count Register - SCFDR2(half, read-only) */
+#define SH7750_SCFDR2_REGOFS  0xE8001C /* offset */
+#define SH7750_SCFDR2         SH7750_P4_REG32(SH7750_SCFDR2_REGOFS)
+#define SH7750_SCFDR2_A7      SH7750_A7_REG32(SH7750_SCFDR2_REGOFS)
+
+#define SH7750_SCFDR2_T       0x1F00   /* Number of untransmitted data bytes
+                                          in transmit FIFO */
+#define SH7750_SCFDR2_T_S     8
+#define SH7750_SCFDR2_R       0x001F   /* Number of received data bytes in
+                                          receive FIFO */
+#define SH7750_SCFDR2_R_S     0
+
+/* SCIF Line Status Register - SCLSR2(half, read-only) */
+#define SH7750_SCLSR2_REGOFS  0xE80024 /* offset */
+#define SH7750_SCLSR2         SH7750_P4_REG32(SH7750_SCLSR2_REGOFS)
+#define SH7750_SCLSR2_A7      SH7750_A7_REG32(SH7750_SCLSR2_REGOFS)
+
+#define SH7750_SCLSR2_ORER    0x0001   /* Overrun Error */
+
+/*
+ * SCI-based Smart Card Interface
+ */
+/* Smart Card Mode Register - SCSCMR1(byte) */
+#define SH7750_SCSCMR1_REGOFS 0xE00018 /* offset */
+#define SH7750_SCSCMR1        SH7750_P4_REG32(SH7750_SCSCMR1_REGOFS)
+#define SH7750_SCSCMR1_A7     SH7750_A7_REG32(SH7750_SCSCMR1_REGOFS)
+
+#define SH7750_SCSCMR1_SDIR   0x08     /* Smart Card Data Transfer Direction: */
+#define SH7750_SCSCMR1_SDIR_LSBF 0x00  /* LSB-first */
+#define SH7750_SCSCMR1_SDIR_MSBF 0x08  /* MSB-first */
+
+#define SH7750_SCSCMR1_SINV   0x04     /* Smart Card Data Inversion */
+#define SH7750_SCSCMR1_SMIF   0x01     /* Smart Card Interface Mode Select */
+
+/* Smart-card specific bits in other registers */
+/* SCSMR1: */
+#define SH7750_SCSMR1_GSM     0x80     /* GSM mode select */
+
+/* SCSSR1: */
+#define SH7750_SCSSR1_ERS     0x10     /* Error Signal Status */
+
+/*
+ * I/O Ports
+ */
+/* Port Control Register A - PCTRA */
+#define SH7750_PCTRA_REGOFS   0x80002C /* offset */
+#define SH7750_PCTRA          SH7750_P4_REG32(SH7750_PCTRA_REGOFS)
+#define SH7750_PCTRA_A7       SH7750_A7_REG32(SH7750_PCTRA_REGOFS)
+
+#define SH7750_PCTRA_PBPUP(n) 0        /* Bit n is pulled up */
+#define SH7750_PCTRA_PBNPUP(n) (1 << ((n)*2+1))        /* Bit n is not pulled up */
+#define SH7750_PCTRA_PBINP(n) 0        /* Bit n is an input */
+#define SH7750_PCTRA_PBOUT(n) (1 << ((n)*2))   /* Bit n is an output */
+
+/* Port Data Register A - PDTRA(half) */
+#define SH7750_PDTRA_REGOFS   0x800030 /* offset */
+#define SH7750_PDTRA          SH7750_P4_REG32(SH7750_PDTRA_REGOFS)
+#define SH7750_PDTRA_A7       SH7750_A7_REG32(SH7750_PDTRA_REGOFS)
+
+#define SH7750_PDTRA_BIT(n) (1 << (n))
+
+/* Port Control Register B - PCTRB */
+#define SH7750_PCTRB_REGOFS   0x800040 /* offset */
+#define SH7750_PCTRB          SH7750_P4_REG32(SH7750_PCTRB_REGOFS)
+#define SH7750_PCTRB_A7       SH7750_A7_REG32(SH7750_PCTRB_REGOFS)
+
+#define SH7750_PCTRB_PBPUP(n) 0        /* Bit n is pulled up */
+#define SH7750_PCTRB_PBNPUP(n) (1 << ((n-16)*2+1))     /* Bit n is not pulled up */
+#define SH7750_PCTRB_PBINP(n) 0        /* Bit n is an input */
+#define SH7750_PCTRB_PBOUT(n) (1 << ((n-16)*2))        /* Bit n is an output */
+
+/* Port Data Register B - PDTRB(half) */
+#define SH7750_PDTRB_REGOFS   0x800044 /* offset */
+#define SH7750_PDTRB          SH7750_P4_REG32(SH7750_PDTRB_REGOFS)
+#define SH7750_PDTRB_A7       SH7750_A7_REG32(SH7750_PDTRB_REGOFS)
+
+#define SH7750_PDTRB_BIT(n) (1 << ((n)-16))
+
+/* GPIO Interrupt Control Register - GPIOIC(half) */
+#define SH7750_GPIOIC_REGOFS  0x800048 /* offset */
+#define SH7750_GPIOIC         SH7750_P4_REG32(SH7750_GPIOIC_REGOFS)
+#define SH7750_GPIOIC_A7      SH7750_A7_REG32(SH7750_GPIOIC_REGOFS)
+
+#define SH7750_GPIOIC_PTIREN(n) (1 << (n))     /* Port n is used as a GPIO int */
+
+/*
+ * Interrupt Controller - INTC
+ */
+/* Interrupt Control Register - ICR (half) */
+#define SH7750_ICR_REGOFS     0xD00000 /* offset */
+#define SH7750_ICR            SH7750_P4_REG32(SH7750_ICR_REGOFS)
+#define SH7750_ICR_A7         SH7750_A7_REG32(SH7750_ICR_REGOFS)
+
+#define SH7750_ICR_NMIL       0x8000   /* NMI Input Level */
+#define SH7750_ICR_MAI        0x4000   /* NMI Interrupt Mask */
+
+#define SH7750_ICR_NMIB       0x0200   /* NMI Block Mode: */
+#define SH7750_ICR_NMIB_BLK   0x0000   /*   NMI requests held pending while
+                                          SR.BL bit is set to 1 */
+#define SH7750_ICR_NMIB_NBLK  0x0200   /*   NMI requests detected when SR.BL bit
+                                          set to 1 */
+
+#define SH7750_ICR_NMIE       0x0100   /* NMI Edge Select: */
+#define SH7750_ICR_NMIE_FALL  0x0000   /*   Interrupt request detected on falling
+                                          edge of NMI input */
+#define SH7750_ICR_NMIE_RISE  0x0100   /*   Interrupt request detected on rising
+                                          edge of NMI input */
+
+#define SH7750_ICR_IRLM       0x0080   /* IRL Pin Mode: */
+#define SH7750_ICR_IRLM_ENC   0x0000   /*   IRL\ pins used as a level-encoded
+                                          interrupt requests */
+#define SH7750_ICR_IRLM_RAW   0x0080   /*   IRL\ pins used as a four independent
+                                          interrupt requests */
+
+/* Interrupt Priority Register A - IPRA (half) */
+#define SH7750_IPRA_REGOFS    0xD00004 /* offset */
+#define SH7750_IPRA           SH7750_P4_REG32(SH7750_IPRA_REGOFS)
+#define SH7750_IPRA_A7        SH7750_A7_REG32(SH7750_IPRA_REGOFS)
+
+#define SH7750_IPRA_TMU0      0xF000   /* TMU0 interrupt priority */
+#define SH7750_IPRA_TMU0_S    12
+#define SH7750_IPRA_TMU1      0x0F00   /* TMU1 interrupt priority */
+#define SH7750_IPRA_TMU1_S    8
+#define SH7750_IPRA_TMU2      0x00F0   /* TMU2 interrupt priority */
+#define SH7750_IPRA_TMU2_S    4
+#define SH7750_IPRA_RTC       0x000F   /* RTC interrupt priority */
+#define SH7750_IPRA_RTC_S     0
+
+/* Interrupt Priority Register B - IPRB (half) */
+#define SH7750_IPRB_REGOFS    0xD00008 /* offset */
+#define SH7750_IPRB           SH7750_P4_REG32(SH7750_IPRB_REGOFS)
+#define SH7750_IPRB_A7        SH7750_A7_REG32(SH7750_IPRB_REGOFS)
+
+#define SH7750_IPRB_WDT       0xF000   /* WDT interrupt priority */
+#define SH7750_IPRB_WDT_S     12
+#define SH7750_IPRB_REF       0x0F00   /* Memory Refresh unit interrupt
+                                          priority */
+#define SH7750_IPRB_REF_S     8
+#define SH7750_IPRB_SCI1      0x00F0   /* SCI1 interrupt priority */
+#define SH7750_IPRB_SCI1_S    4
+
+/* Interrupt Priority Register ó - IPRó (half) */
+#define SH7750_IPRC_REGOFS    0xD00004 /* offset */
+#define SH7750_IPRC           SH7750_P4_REG32(SH7750_IPRC_REGOFS)
+#define SH7750_IPRC_A7        SH7750_A7_REG32(SH7750_IPRC_REGOFS)
+
+#define SH7750_IPRC_GPIO      0xF000   /* GPIO interrupt priority */
+#define SH7750_IPRC_GPIO_S    12
+#define SH7750_IPRC_DMAC      0x0F00   /* DMAC interrupt priority */
+#define SH7750_IPRC_DMAC_S    8
+#define SH7750_IPRC_SCIF      0x00F0   /* SCIF interrupt priority */
+#define SH7750_IPRC_SCIF_S    4
+#define SH7750_IPRC_HUDI      0x000F   /* H-UDI interrupt priority */
+#define SH7750_IPRC_HUDI_S    0
+
+
+/* 
+ * User Break Controller registers
+ */
+#define SH7750_BARA           0x200000 /* Break address regiser A */
+#define SH7750_BAMRA          0x200004 /* Break address mask regiser A */
+#define SH7750_BBRA           0x200008 /* Break bus cycle regiser A */
+#define SH7750_BARB           0x20000c /* Break address regiser B */
+#define SH7750_BAMRB          0x200010 /* Break address mask regiser B */
+#define SH7750_BBRB           0x200014 /* Break bus cycle regiser B */
+#define SH7750_BASRB          0x000018 /* Break ASID regiser B */
+#define SH7750_BDRB           0x200018 /* Break data regiser B */
+#define SH7750_BDMRB          0x20001c /* Break data mask regiser B */
+#define SH7750_BRCR           0x200020 /* Break control register */
+
+#define SH7750_BRCR_UDBE        0x0001 /* User break debug enable bit */
+
+/*
+ * Missing in RTEMS, added for QEMU
+ */
+#define SH7750_BCR3_A7       0x1f800050
+#define SH7750_BCR4_A7       0x1e0a00f0
+#define SH7750_PRECHARGE0_A7 0x1f900088
+#define SH7750_PRECHARGE1_A7 0x1f940088
+
+#endif
diff --git a/hw/shix.c b/hw/shix.c
new file mode 100644 (file)
index 0000000..9577c09
--- /dev/null
+++ b/hw/shix.c
@@ -0,0 +1,111 @@
+/*
+ * SHIX 2.0 board description
+ * 
+ * Copyright (c) 2005 Samuel Tardieu
+ * 
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+/* 
+   Shix 2.0 board by Alexis Polti, described at
+   http://perso.enst.fr/~polti/realisations/shix20/
+
+   More information in target-sh4/README.sh4
+*/
+#include "vl.h"
+
+#define BIOS_FILENAME "shix_bios.bin"
+#define BIOS_ADDRESS 0xA0000000
+
+void DMA_run(void)
+{
+    /* XXXXX */
+}
+
+void irq_info(void)
+{
+    /* XXXXX */
+}
+
+void pic_set_irq(int irq, int level)
+{
+    /* XXXXX */
+}
+
+void pic_info()
+{
+    /* XXXXX */
+}
+
+void vga_update_display()
+{
+    /* XXXXX */
+}
+
+void vga_invalidate_display()
+{
+    /* XXXXX */
+}
+
+void vga_screen_dump(const char *filename)
+{
+    /* XXXXX */
+}
+
+void shix_init(int ram_size, int vga_ram_size, int boot_device,
+              DisplayState * ds, const char **fd_filename, int snapshot,
+              const char *kernel_filename, const char *kernel_cmdline,
+              const char *initrd_filename)
+{
+    int ret;
+    CPUState *env;
+    struct SH7750State *s;
+
+    printf("Initializing CPU\n");
+    env = cpu_init();
+
+    /* Allocate memory space */
+    printf("Allocating ROM\n");
+    cpu_register_physical_memory(0x00000000, 0x00004000, IO_MEM_ROM);
+    printf("Allocating SDRAM 1\n");
+    cpu_register_physical_memory(0x08000000, 0x01000000, 0x00004000);
+    printf("Allocating SDRAM 2\n");
+    cpu_register_physical_memory(0x0c000000, 0x01000000, 0x01004000);
+
+    /* Load BIOS in 0 (and access it through P2, 0xA0000000) */
+    printf("%s: load BIOS '%s'\n", __func__, BIOS_FILENAME);
+    ret = load_image(BIOS_FILENAME, phys_ram_base);
+    if (ret < 0) {             /* Check bios size */
+       fprintf(stderr, "ret=%d\n", ret);
+       fprintf(stderr, "qemu: could not load SHIX bios '%s'\n",
+               BIOS_FILENAME);
+       exit(1);
+    }
+
+    /* Register peripherals */
+    s = sh7750_init(env);
+    /* XXXXX Check success */
+    tc58128_init(s, "shix_linux_nand.bin", NULL);
+    fprintf(stderr, "initialization terminated\n");
+}
+
+QEMUMachine shix_machine = {
+    "shix",
+    "shix card",
+    shix_init
+};
diff --git a/hw/tc58128.c b/hw/tc58128.c
new file mode 100644 (file)
index 0000000..a8b26f7
--- /dev/null
@@ -0,0 +1,181 @@
+#include <assert.h>
+#include "vl.h"
+
+#define CE1  0x0100
+#define CE2  0x0200
+#define RE   0x0400
+#define WE   0x0800
+#define ALE  0x1000
+#define CLE  0x2000
+#define RDY1 0x4000
+#define RDY2 0x8000
+#define RDY(n) ((n) == 0 ? RDY1 : RDY2)
+
+typedef enum { WAIT, READ1, READ2, READ3 } state_t;
+
+typedef struct {
+    uint8_t *flash_contents;
+    state_t state;
+    uint32_t address;
+    uint8_t address_cycle;
+} tc58128_dev;
+
+static tc58128_dev tc58128_devs[2];
+
+#define FLASH_SIZE (16*1024*1024)
+
+void init_dev(tc58128_dev * dev, char *filename)
+{
+    int ret, blocks;
+
+    dev->state = WAIT;
+    dev->flash_contents = qemu_mallocz(FLASH_SIZE);
+    memset(dev->flash_contents, 0xff, FLASH_SIZE);
+    if (!dev->flash_contents) {
+       fprintf(stderr, "could not alloc memory for flash\n");
+       exit(1);
+    }
+    if (filename) {
+       /* Load flash image skipping the first block */
+       ret = load_image(filename, dev->flash_contents + 528 * 32);
+       if (ret < 0) {
+           fprintf(stderr, "ret=%d\n", ret);
+           fprintf(stderr, "qemu: could not load flash image %s\n",
+                   filename);
+           exit(1);
+       } else {
+           /* Build first block with number of blocks */
+           blocks = (ret + 528 * 32 - 1) / (528 * 32);
+           dev->flash_contents[0] = blocks & 0xff;
+           dev->flash_contents[1] = (blocks >> 8) & 0xff;
+           dev->flash_contents[2] = (blocks >> 16) & 0xff;
+           dev->flash_contents[3] = (blocks >> 24) & 0xff;
+           fprintf(stderr, "loaded %d bytes for %s into flash\n", ret,
+                   filename);
+       }
+    }
+}
+
+void handle_command(tc58128_dev * dev, uint8_t command)
+{
+    switch (command) {
+    case 0xff:
+       fprintf(stderr, "reset flash device\n");
+       dev->state = WAIT;
+       break;
+    case 0x00:
+       fprintf(stderr, "read mode 1\n");
+       dev->state = READ1;
+       dev->address_cycle = 0;
+       break;
+    case 0x01:
+       fprintf(stderr, "read mode 2\n");
+       dev->state = READ2;
+       dev->address_cycle = 0;
+       break;
+    case 0x50:
+       fprintf(stderr, "read mode 3\n");
+       dev->state = READ3;
+       dev->address_cycle = 0;
+       break;
+    default:
+       fprintf(stderr, "unknown flash command 0x%02x\n", command);
+       assert(0);
+    }
+}
+
+void handle_address(tc58128_dev * dev, uint8_t data)
+{
+    switch (dev->state) {
+    case READ1:
+    case READ2:
+    case READ3:
+       switch (dev->address_cycle) {
+       case 0:
+           dev->address = data;
+           if (dev->state == READ2)
+               dev->address |= 0x100;
+           else if (dev->state == READ3)
+               dev->address |= 0x200;
+           break;
+       case 1:
+           dev->address += data * 528 * 0x100;
+           break;
+       case 2:
+           dev->address += data * 528;
+           fprintf(stderr, "address pointer in flash: 0x%08x\n",
+                   dev->address);
+           break;
+       default:
+           /* Invalid data */
+           assert(0);
+       }
+       dev->address_cycle++;
+       break;
+    default:
+       assert(0);
+    }
+}
+
+uint8_t handle_read(tc58128_dev * dev)
+{
+#if 0
+    if (dev->address % 0x100000 == 0)
+       fprintf(stderr, "reading flash at address 0x%08x\n", dev->address);
+#endif
+    return dev->flash_contents[dev->address++];
+}
+
+/* We never mark the device as busy, so interrupts cannot be triggered
+   XXXXX */
+
+int tc58128_cb(uint16_t porta, uint16_t portb,
+              uint16_t * periph_pdtra, uint16_t * periph_portadir,
+              uint16_t * periph_pdtrb, uint16_t * periph_portbdir)
+{
+    int dev;
+
+    if ((porta & CE1) == 0)
+       dev = 0;
+    else if ((porta & CE2) == 0)
+       dev = 1;
+    else
+       return 0;               /* No device selected */
+
+    if ((porta & RE) && (porta & WE)) {
+       /* Nothing to do, assert ready and return to input state */
+       *periph_portadir &= 0xff00;
+       *periph_portadir |= RDY(dev);
+       *periph_pdtra |= RDY(dev);
+       return 1;
+    }
+
+    if (porta & CLE) {
+       /* Command */
+       assert((porta & WE) == 0);
+       handle_command(&tc58128_devs[dev], porta & 0x00ff);
+    } else if (porta & ALE) {
+       assert((porta & WE) == 0);
+       handle_address(&tc58128_devs[dev], porta & 0x00ff);
+    } else if ((porta & RE) == 0) {
+       *periph_portadir |= 0x00ff;
+       *periph_pdtra &= 0xff00;
+       *periph_pdtra |= handle_read(&tc58128_devs[dev]);
+    } else {
+       assert(0);
+    }
+    return 1;
+}
+
+static sh7750_io_device tc58128 = {
+    RE | WE,                   /* Port A triggers */
+    0,                         /* Port B triggers */
+    tc58128_cb                 /* Callback */
+};
+
+int tc58128_init(struct SH7750State *s, char *zone1, char *zone2)
+{
+    init_dev(&tc58128_devs[0], zone1);
+    init_dev(&tc58128_devs[1], zone2);
+    return sh7750_register_io_device(s, &tc58128);
+}
diff --git a/target-sh4/README.sh4 b/target-sh4/README.sh4
new file mode 100644 (file)
index 0000000..b887175
--- /dev/null
@@ -0,0 +1,150 @@
+qemu target:   sh4
+author:        Samuel Tardieu <sam@rfc1149.net>
+last modified: Tue Dec  6 07:22:44 CET 2005
+
+The sh4 target is not ready at all yet for integration in qemu. This
+file describes the current state of implementation.
+
+Most places requiring attention and/or modification can be detected by
+looking for "XXXXX" or "assert (0)".
+
+The sh4 core is located in target-sh4/*, while the 7750 peripheral
+features (IO ports for example) are located in hw/sh7750.[ch]. The
+main board description is in hw/shix.c, and the NAND flash in
+hw/tc58128.[ch].
+
+All the shortcomings indicated here will eventually be resolved. This
+is a work in progress. Features are added in a semi-random order: if a
+point is blocking to progress on booting the Linux kernel for the shix
+board, it is addressed first; if feedback is necessary and no progress
+can be made on blocking points until it is received, a random feature
+is worked on.
+
+Goals
+-----
+
+The primary model being worked on is the soft MMU target to be able to
+emulate the Shix 2.0 board by Alexis Polti, described at
+http://perso.enst.fr/~polti/realisations/shix20/
+
+Ultimately, qemu will be coupled with a system C or a verilog
+simulator to simulate the whole board functionalities.
+
+A sh4 user-mode has also somewhat started but will be worked on
+afterwards. The goal is to automate tests for GNAT (GNU Ada) compiler
+that I ported recently to the sh4-linux target.
+
+Registers
+---------
+
+16 general purpose registers are available at any time. The first 8
+registers are banked and the non-directly visible ones can be accessed
+by privileged instructions. In qemu, we define 24 general purpose
+registers and the code generation use either [0-7]+[8-15] or
+[16-23]+[8-15] depending on the MD and RB flags in the sr
+configuration register.
+
+Instructions
+------------
+
+Most sh4 instructions have been implemented. The missing ones at this
+time are:
+  - FPU related instructions
+  - LDTLB to load a new MMU entry
+  - SLEEP to put the processor in sleep mode
+
+Most instructions could be optimized a lot. This will be worked on
+after the current model is fully functional unless debugging
+convenience requires that it is done early.
+
+Many instructions did not have a chance to be tested yet. The plan is
+to implement unit and regression testing of those in the future.
+
+MMU
+---
+
+The MMU is implemented in the sh4 core. MMU management has not been
+tested at all yet. In the sh7750, it can be manipulated through memory
+mapped registers and this part has not yet been implemented.
+
+Exceptions
+----------
+
+Exceptions are implemented as described in the sh4 reference manual
+but have not been tested yet. They do not use qemu EXCP_ features
+yet.
+
+IRQ
+---
+
+IRQ are not implemented yet.
+
+Peripheral features
+-------------------
+
+  + Serial ports
+
+Configuration and use of the first serial port (SCI) without
+interrupts is supported. Input has not yet been tested.
+
+Configuration of the second serial port (SCIF) is supported. FIFO
+handling infrastructure has been started but is not completed yet.
+
+  + GPIO ports
+
+GPIO ports have been implemented. A registration function allows
+external modules to register interest in some port changes (see
+hw/tc58128.[ch] for an example) and will be called back. Interrupt
+generation is not yet supported but some infrastructure is in place
+for this purpose. Note that in the current model a peripheral module
+cannot directly simulate a H->L->H input port transition and have an
+interrupt generated on the low level.
+
+  + TC58128 NAND flash
+
+TC58128 NAND flash is partially implemented through GPIO ports. It
+supports reading from flash.
+
+GDB
+---
+
+GDB remote target support has been implemented and lightly tested.
+
+Files
+-----
+
+File names are harcoded at this time. The bootloader must be stored in
+shix_bios.bin in the current directory. The initial Linux image must
+be stored in shix_linux_nand.bin in the current directory in NAND
+format. Test files can be obtained from
+http://perso.enst.fr/~polti/robot/ as well as the various datasheets I
+use.
+
+qemu disk parameter on the command line is unused. You can supply any
+existing image and it will be ignored. As the goal is to simulate an
+embedded target, it is not clear how this parameter will be handled in
+the future.
+
+To build an ELF kernel image from the NAND image, 16 bytes have to be
+stripped off the end of every 528 bytes, keeping only 512 of them. The
+following Python code snippet does it:
+
+#! /usr/bin/python
+
+def denand (infd, outfd):
+    while True:
+        d = infd.read (528)
+        if not d: return
+        outfd.write (d[:512])
+
+if __name__ == '__main__':
+    import sys
+    denand (open (sys.argv[1], 'rb'),
+            open (sys.argv[2], 'wb'))
+    
+Style isssues
+-------------
+
+There is currently a mix between my style (space before opening
+parenthesis) and qemu style. This will be resolved before final
+integration is proposed.
diff --git a/vl.c b/vl.c
index 8b6b33ce95683a8e033e7576d8c276e650322e21..a7f77c9d1998e89f539b41618e5a3cf108f99d7d 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -4863,6 +4863,8 @@ void register_machines(void)
     qemu_register_machine(&integratorcp926_machine);
     qemu_register_machine(&integratorcp1026_machine);
     qemu_register_machine(&versatilepb_machine);
+#elif defined(TARGET_SH4)
+    qemu_register_machine(&shix_machine);
 #else
 #error unsupported CPU
 #endif
diff --git a/vl.h b/vl.h
index fdf8c6867eb54073f164e5315f2fc92a8b9b20fc..8b935a962b8bb60174f33e9ddd0cd62eebdd1285 100644 (file)
--- a/vl.h
+++ b/vl.h
@@ -842,6 +842,9 @@ extern QEMUMachine heathrow_machine;
 /* mips_r4k.c */
 extern QEMUMachine mips_machine;
 
+/* shix.c */
+extern QEMUMachine shix_machine;
+
 #ifdef TARGET_PPC
 ppc_tb_t *cpu_ppc_tb_init (CPUState *env, uint32_t freq);
 #endif
@@ -1016,6 +1019,28 @@ void *pl190_init(uint32_t base, void *parent, int irq, int fiq);
 void sp804_init(uint32_t base, void *pic, int irq);
 void icp_pit_init(uint32_t base, void *pic, int irq);
 
+/* sh7750.c */
+struct SH7750State;
+
+struct SH7750State *sh7750_init(CPUSH4State * 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);
+/* tc58128.c */
+int tc58128_init(struct SH7750State *s, char *zone1, char *zone2);
+
 #endif /* defined(QEMU_TOOL) */
 
 /* monitor.c */