Support Plathome OpenMicroServer (OMS-AL400).

http://www.plathome.co.jp/products/oms400/index.html (sorry japanese only).
This commit is contained in:
shige 2006-02-23 17:14:01 +00:00
parent ee2255c4b0
commit 6707bdbecb
4 changed files with 265 additions and 1 deletions

View File

@ -0,0 +1,162 @@
/* $NetBSD: omsal400.c,v 1.1 2006/02/23 17:14:01 shige Exp $ */
/*-
* Copyright (c) 2006 Shigeyuki Fukushima.
* All rights reserved.
*
* Written by Shigeyuki Fukushima.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: omsal400.c,v 1.1 2006/02/23 17:14:01 shige Exp $");
#include <sys/param.h>
#include <machine/bus.h>
#include <machine/locore.h>
#include <evbmips/alchemy/obiovar.h>
#include <evbmips/alchemy/board.h>
#include <evbmips/alchemy/omsal400reg.h>
#define GET16(x) \
(*((volatile uint16_t *)MIPS_PHYS_TO_KSEG1(x)))
#define PUT16(x, v) \
(*((volatile uint16_t *)MIPS_PHYS_TO_KSEG1(x)) = (v))
static void omsal400_init(void);
static int omsal400_pci_intr_map(struct pci_attach_args *,
pci_intr_handle_t *);
static void omsal400_poweroff(void);
static void omsal400_reboot(void);
static const struct obiodev omsal400_devices[] = {
{ NULL },
};
static struct alchemy_board omsal400_info = {
"Plathome Open Micro Sever AL400/AMD Alchemy Au1550",
omsal400_devices,
omsal400_init,
omsal400_pci_intr_map,
omsal400_reboot,
omsal400_poweroff,
};
const struct alchemy_board *
board_info(void)
{
return &omsal400_info;
}
void
omsal400_init(void)
{
/* uint16_t whoami; */
if (MIPS_PRID_COPTS(cpu_id) != MIPS_AU1550)
panic("omsal400: CPU not Au1550");
#if 0 /* XXX: TODO borad identification */
/* check the whoami register for a match */
whoami = GET16(DBAU1550_WHOAMI);
if (DBAU1550_WHOAMI_BOARD(whoami) != DBAU1550_WHOAMI_DBAU1550_REV1)
panic("dbau1550: WHOAMI (%x) not DBAu1550!", whoami);
printf("DBAu1550 (cabernet), CPLDv%d, ",
DBAU1550_WHOAMI_CPLD(whoami));
if (DBAU1550_WHOAMI_DAUGHTER(whoami) != 0xf)
printf("daughtercard 0x%x\n",
DBAU1550_WHOAMI_DAUGHTER(whoami));
else
printf("no daughtercard\n");
#endif
/* leave console and clocks alone -- YAMON should have got it right! */
}
int
omsal400_pci_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
{
/*
* This platform has 4 PCI devices:
* dev 1 (PCI_INTD): PCI Connector
* dev 2 (PCI_INTC): NEC USB 2.0 uPD720101
* dev 3 (PCI_INTB): Intel GB Ether 82541PI
* dev 4 (PCI_INTA): Intel GB Ether 82541PI
*/
static const int irqmap[5/*device*/][4/*pin*/] = {
{ 6, -1, -1, -1 }, /* 1: PCI Connecter (not used) */
{ 5, 5, 5, -1 }, /* 2: NEC USB 2.0 */
{ 2, -1, -1, -1 }, /* 3: Intel GbE */
{ 1, -1, -1, -1 }, /* 4: Intel GbE */
};
int pin, dev, irq;
/* if interrupt pin not used... */
if ((pin = pa->pa_intrpin) == 0)
return 1;
if (pin > 4) {
printf("pci: bad interrupt pin %d\n", pin);
return 1;
}
pci_decompose_tag(pa->pa_pc, pa->pa_intrtag, NULL, &dev, NULL);
if ((dev < 1) || (dev > 4)) {
printf("pci: bad device %d\n", dev);
return 1;
}
if ((irq = irqmap[dev - 1][pin - 1]) == -1) {
printf("pci: no IRQ routing for device %d pin %d\n", dev, pin);
return 1;
}
*ihp = irq;
return 0;
}
void
omsal400_reboot(void)
{
/* XXX */
}
void
omsal400_poweroff(void)
{
printf("\n- poweroff -\n");
/* XXX */
}

View File

@ -0,0 +1,53 @@
/* $NetBSD: omsal400reg.h,v 1.1 2006/02/23 17:14:01 shige Exp $ */
/*-
* Copyright (c) 2006 Shigeyuki Fukushima.
* All rights reserved.
*
* Written by Shigeyuki Fukushima.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Board-specific registers for OMS-AL400.
*/
/*
* OMSAL400_WHOAMI
*/
/*
* OMSAL400_BCSR
*/
/*
* OMSAL400_BOARD_SPECIFIC
*/
/*
* OMSAL400_SOFTWARE_RESET
*/

View File

@ -0,0 +1,47 @@
# $NetBSD: OMSAL400,v 1.1 2006/02/23 17:14:01 shige Exp $
#
# Kernel config for the Open Micro Server AL400.
include "arch/evbmips/conf/ALCHEMY"
no options ALCHEMY_AU1000
no options ALCHEMY_AU1100
no options ALCHEMY_AU1500
no options ALCHEMY_AU1550
no options ALCHEMY_GENERIC
# configure out local board support
makeoptions TEXTADDR="0x80100000"
options ALCHEMY_AU1550
options ALCHEMY_OMSAL400
options PCI_NETBSD_CONFIGURE
aupci* at aubus? addr ?
pci* at aupci?
# Note that this is just fairly random selection of PCI devices.
# Only the hptide controller is actually on-board.
# PCI devices
wm* at pci? dev ? function ? # Intel 8254x gigabit
ehci* at pci? dev ? function ? # Enhanced Host Controller
ohci* at pci? dev ? function ? # Open Host Controller
hptide* at pci? dev ? function ? # Triones/HighPoint IDE
# MII
lxtphy* at mii? phy ? # Level One LXT-970 PHYs
igphy* at mii? phy ? # Intel IGP01E1000
# USB
usb* at ohci?
usb* at ehci?
# ATA
atabus* at ata?
wd* at atabus? drive ? flags 0x0000
atapibus* at atabus?
cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown

View File

@ -1,10 +1,11 @@
# $NetBSD: files.alchemy,v 1.4 2006/02/23 04:40:53 gdamore Exp $
# $NetBSD: files.alchemy,v 1.5 2006/02/23 17:14:01 shige Exp $
# Platform support - select just one, please
defflag opt_alchemy.h ALCHEMY_GENERIC
ALCHEMY_DBAU1550
ALCHEMY_DBAU1500
ALCHEMY_MTX1
ALCHEMY_OMSAL400
file arch/evbmips/alchemy/mach_intr.c
@ -15,6 +16,7 @@ file arch/evbmips/alchemy/genericbd.c alchemy_generic
file arch/evbmips/alchemy/dbau1500.c alchemy_dbau1500
file arch/evbmips/alchemy/dbau1550.c alchemy_dbau1550
file arch/evbmips/alchemy/mtx-1.c alchemy_mtx1
file arch/evbmips/alchemy/omsal400.c alchemy_omsal400
file arch/evbmips/alchemy/pciide_machdep.c pciide_common
file arch/mips/mips/bus_dma.c