Home | History | Annotate | Line # | Download | only in obs405
obs266_machdep.c revision 1.11.2.3
      1  1.11.2.2     rmind /*	$NetBSD: obs266_machdep.c,v 1.11.2.3 2011/04/21 01:41:01 rmind Exp $	*/
      2       1.1     shige /*	Original: md_machdep.c,v 1.3 2005/01/24 18:47:37 shige Exp $	*/
      3       1.1     shige 
      4       1.1     shige /*
      5       1.1     shige  * Copyright 2001, 2002 Wasabi Systems, Inc.
      6       1.1     shige  * All rights reserved.
      7       1.1     shige  *
      8       1.1     shige  * Written by Eduardo Horvath and Simon Burge for Wasabi Systems, Inc.
      9       1.1     shige  *
     10       1.1     shige  * Redistribution and use in source and binary forms, with or without
     11       1.1     shige  * modification, are permitted provided that the following conditions
     12       1.1     shige  * are met:
     13       1.1     shige  * 1. Redistributions of source code must retain the above copyright
     14       1.1     shige  *    notice, this list of conditions and the following disclaimer.
     15       1.1     shige  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1     shige  *    notice, this list of conditions and the following disclaimer in the
     17       1.1     shige  *    documentation and/or other materials provided with the distribution.
     18       1.1     shige  * 3. All advertising materials mentioning features or use of this software
     19       1.1     shige  *    must display the following acknowledgement:
     20       1.1     shige  *      This product includes software developed for the NetBSD Project by
     21       1.1     shige  *      Wasabi Systems, Inc.
     22       1.1     shige  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     23       1.1     shige  *    or promote products derived from this software without specific prior
     24       1.1     shige  *    written permission.
     25       1.1     shige  *
     26       1.1     shige  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     27       1.1     shige  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1     shige  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1     shige  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     30       1.1     shige  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1     shige  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1     shige  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1     shige  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1     shige  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1     shige  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1     shige  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1     shige  */
     38       1.1     shige 
     39       1.1     shige /*
     40       1.1     shige  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
     41       1.1     shige  * Copyright (C) 1995, 1996 TooLs GmbH.
     42       1.1     shige  * All rights reserved.
     43       1.1     shige  *
     44       1.1     shige  * Redistribution and use in source and binary forms, with or without
     45       1.1     shige  * modification, are permitted provided that the following conditions
     46       1.1     shige  * are met:
     47       1.1     shige  * 1. Redistributions of source code must retain the above copyright
     48       1.1     shige  *    notice, this list of conditions and the following disclaimer.
     49       1.1     shige  * 2. Redistributions in binary form must reproduce the above copyright
     50       1.1     shige  *    notice, this list of conditions and the following disclaimer in the
     51       1.1     shige  *    documentation and/or other materials provided with the distribution.
     52       1.1     shige  * 3. All advertising materials mentioning features or use of this software
     53       1.1     shige  *    must display the following acknowledgement:
     54       1.1     shige  *	This product includes software developed by TooLs GmbH.
     55       1.1     shige  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     56       1.1     shige  *    derived from this software without specific prior written permission.
     57       1.1     shige  *
     58       1.1     shige  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     59       1.1     shige  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     60       1.1     shige  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     61       1.1     shige  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     62       1.1     shige  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     63       1.1     shige  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     64       1.1     shige  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     65       1.1     shige  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     66       1.1     shige  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     67       1.1     shige  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     68       1.1     shige  */
     69       1.1     shige 
     70       1.1     shige #include <sys/cdefs.h>
     71  1.11.2.2     rmind __KERNEL_RCSID(0, "$NetBSD: obs266_machdep.c,v 1.11.2.3 2011/04/21 01:41:01 rmind Exp $");
     72       1.1     shige 
     73       1.1     shige #include "opt_compat_netbsd.h"
     74       1.1     shige #include "opt_ddb.h"
     75       1.1     shige #include "opt_ipkdb.h"
     76      1.10       apb #include "opt_modular.h"
     77       1.1     shige 
     78       1.1     shige #include <sys/param.h>
     79       1.1     shige #include <sys/kernel.h>
     80       1.1     shige #include <sys/ksyms.h>
     81       1.1     shige #include <sys/mount.h>
     82       1.1     shige #include <sys/reboot.h>
     83       1.1     shige #include <sys/systm.h>
     84       1.7    dyoung #include <sys/device.h>
     85       1.1     shige 
     86       1.1     shige #include <uvm/uvm_extern.h>
     87       1.1     shige 
     88       1.1     shige #include <machine/bus.h>
     89       1.1     shige #include <machine/cpu.h>
     90       1.1     shige #include <machine/obs266.h>
     91       1.1     shige #include <powerpc/spr.h>
     92  1.11.2.1     rmind #include <powerpc/ibm4xx/dcr4xx.h>
     93  1.11.2.1     rmind #include <powerpc/ibm4xx/dev/comopbvar.h>
     94  1.11.2.1     rmind #include <powerpc/ibm4xx/ibm405gp.h>
     95      1.11      matt #include <powerpc/ibm4xx/openbios.h>
     96  1.11.2.1     rmind #include <powerpc/ibm4xx/spr.h>
     97       1.1     shige 
     98  1.11.2.1     rmind #include <dev/ic/comreg.h>
     99       1.4     shige #include <dev/pci/pcivar.h>
    100       1.4     shige #include <dev/pci/pciconf.h>
    101       1.4     shige 
    102       1.1     shige #include "ksyms.h"
    103       1.1     shige 
    104  1.11.2.1     rmind #include "com.h"
    105  1.11.2.1     rmind #if (NCOM > 0)
    106  1.11.2.1     rmind #include <sys/termios.h>
    107  1.11.2.1     rmind 
    108  1.11.2.1     rmind #ifndef CONADDR
    109  1.11.2.1     rmind #define CONADDR		IBM405GP_UART0_BASE
    110  1.11.2.1     rmind #endif
    111  1.11.2.1     rmind #ifndef CONSPEED
    112  1.11.2.1     rmind #define CONSPEED	B9600
    113  1.11.2.1     rmind #endif
    114  1.11.2.1     rmind #ifndef CONMODE
    115  1.11.2.1     rmind 			/* 8N1 */
    116  1.11.2.1     rmind #define CONMODE		((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8)
    117  1.11.2.1     rmind #endif
    118  1.11.2.1     rmind #endif	/* NCOM */
    119       1.5  kiyohara 
    120       1.5  kiyohara #define	TLB_PG_SIZE 	(16*1024*1024)
    121       1.5  kiyohara 
    122       1.1     shige /*
    123       1.1     shige  * Global variables used here and there
    124       1.1     shige  */
    125       1.1     shige char bootpath[256];
    126       1.1     shige 
    127       1.1     shige extern paddr_t msgbuf_paddr;
    128       1.1     shige 
    129       1.8        ad #if NKSYMS || defined(DDB) || defined(MODULAR)
    130       1.1     shige void *startsym, *endsym;
    131       1.1     shige #endif
    132       1.1     shige 
    133       1.1     shige void initppc(u_int, u_int, char *, void *);
    134       1.1     shige int lcsplx(int);
    135       1.1     shige 
    136       1.1     shige 
    137       1.1     shige void
    138       1.1     shige initppc(u_int startkernel, u_int endkernel, char *args, void *info_block)
    139       1.1     shige {
    140       1.5  kiyohara 	vaddr_t va;
    141       1.1     shige 	u_int memsize;
    142       1.1     shige 
    143       1.1     shige 	/* Setup board from OpenBIOS */
    144       1.1     shige 	openbios_board_init(info_block, startkernel);
    145       1.1     shige 	memsize = openbios_board_memsize_get();
    146       1.1     shige 
    147       1.6     freza 	/* Linear map kernel memory */
    148       1.6     freza 	for (va = 0; va < endkernel; va += TLB_PG_SIZE)
    149       1.5  kiyohara 		ppc4xx_tlb_reserve(va, va, TLB_PG_SIZE, TLB_EX);
    150       1.5  kiyohara 
    151       1.6     freza 	/* Map console after RAM (see pmap_tlbmiss()) */
    152  1.11.2.1     rmind 	ppc4xx_tlb_reserve(CONADDR, roundup(memsize, TLB_PG_SIZE), TLB_PG_SIZE,
    153  1.11.2.1     rmind 	    TLB_I | TLB_G);
    154       1.5  kiyohara 
    155       1.1     shige 	/* Initialize IBM405GPr CPU */
    156       1.1     shige 	ibm40x_memsize_init(memsize, startkernel);
    157       1.1     shige 	ibm4xx_init((void (*)(void))ext_intr);
    158       1.1     shige 
    159       1.1     shige 	/*
    160       1.1     shige 	 * Set the page size.
    161       1.1     shige 	 */
    162       1.1     shige 	uvm_setpagesize();
    163       1.1     shige 
    164       1.1     shige 	/*
    165       1.1     shige 	 * Initialize pmap module.
    166       1.1     shige 	 */
    167       1.1     shige 	pmap_bootstrap(startkernel, endkernel);
    168       1.1     shige 
    169       1.1     shige #ifdef DEBUG
    170       1.1     shige 	openbios_board_print();
    171       1.1     shige #endif
    172       1.1     shige 
    173       1.8        ad #if NKSYMS || defined(DDB) || defined(MODULAR)
    174       1.9    martin 	ksyms_addsyms_elf((int)((u_int)endsym - (u_int)startsym), startsym, endsym);
    175       1.1     shige #endif
    176       1.1     shige #ifdef DDB
    177       1.1     shige 	if (boothowto & RB_KDB)
    178       1.1     shige 		Debugger();
    179       1.1     shige #endif
    180       1.1     shige #ifdef IPKDB
    181       1.1     shige 	/*
    182       1.1     shige 	 * Now trap to IPKDB
    183       1.1     shige 	 */
    184       1.1     shige 	ipkdb_init();
    185       1.1     shige 	if (boothowto & RB_KDB)
    186       1.1     shige 		ipkdb_connect(0);
    187       1.1     shige #endif
    188       1.1     shige }
    189       1.1     shige 
    190       1.1     shige void
    191       1.1     shige consinit(void)
    192       1.1     shige {
    193       1.1     shige 
    194  1.11.2.1     rmind #if (NCOM > 0)
    195  1.11.2.1     rmind 	com_opb_cnattach(OBS266_COM_FREQ, CONADDR, CONSPEED, CONMODE);
    196  1.11.2.1     rmind #endif
    197       1.1     shige }
    198       1.1     shige 
    199       1.1     shige int
    200       1.1     shige lcsplx(int ipl)
    201       1.1     shige {
    202       1.1     shige 
    203       1.1     shige 	return spllower(ipl); 	/* XXX */
    204       1.1     shige }
    205       1.1     shige 
    206       1.1     shige 
    207       1.1     shige /*
    208       1.1     shige  * Machine dependent startup code.
    209       1.1     shige  */
    210       1.1     shige void
    211       1.1     shige cpu_startup(void)
    212       1.1     shige {
    213       1.1     shige 
    214       1.1     shige 	/*
    215       1.1     shige 	 * cpu common startup
    216       1.1     shige 	 */
    217       1.1     shige 	ibm4xx_cpu_startup("OpenBlockS266 IBM PowerPC 405GPr Board");
    218       1.1     shige 
    219       1.1     shige 	/*
    220       1.1     shige 	 * Set up the board properties database.
    221       1.1     shige 	 */
    222       1.1     shige 	openbios_board_info_set();
    223       1.1     shige 
    224       1.1     shige 	/*
    225       1.1     shige 	 * Now that we have VM, malloc()s are OK in bus_space.
    226       1.1     shige 	 */
    227       1.1     shige 	bus_space_mallocok();
    228       1.1     shige 
    229       1.1     shige 	/*
    230       1.1     shige 	 * no fake mapiodev
    231       1.1     shige 	 */
    232       1.1     shige 	fake_mapiodev = 0;
    233       1.1     shige }
    234       1.1     shige 
    235       1.1     shige /*
    236       1.1     shige  * Halt or reboot the machine after syncing/dumping according to howto.
    237       1.1     shige  */
    238       1.1     shige void
    239       1.1     shige cpu_reboot(int howto, char *what)
    240       1.1     shige {
    241       1.1     shige 	static int syncing;
    242       1.1     shige 	static char str[256];
    243       1.1     shige 	char *ap = str, *ap1 = ap;
    244       1.1     shige 
    245       1.1     shige 	boothowto = howto;
    246       1.1     shige 	if (!cold && !(howto & RB_NOSYNC) && !syncing) {
    247       1.1     shige 		syncing = 1;
    248       1.1     shige 		vfs_shutdown();		/* sync */
    249       1.1     shige 		resettodr();		/* set wall clock */
    250       1.1     shige 	}
    251       1.1     shige 
    252       1.1     shige 	splhigh();
    253       1.1     shige 
    254       1.1     shige 	if (!cold && (howto & RB_DUMP))
    255       1.1     shige 		ibm4xx_dumpsys();
    256       1.1     shige 
    257       1.1     shige 	doshutdownhooks();
    258       1.1     shige 
    259       1.7    dyoung 	pmf_system_shutdown(boothowto);
    260       1.7    dyoung 
    261       1.1     shige 	if ((howto & RB_POWERDOWN) == RB_POWERDOWN) {
    262       1.1     shige 	  /* Power off here if we know how...*/
    263       1.1     shige 	}
    264       1.1     shige 
    265       1.1     shige 	if (howto & RB_HALT) {
    266       1.1     shige 		printf("halted\n\n");
    267       1.1     shige 
    268       1.1     shige #if 0
    269       1.1     shige 		goto reboot;	/* XXX for now... */
    270       1.1     shige #endif
    271       1.1     shige 
    272       1.1     shige #ifdef DDB
    273       1.1     shige 		printf("dropping to debugger\n");
    274       1.1     shige 		while(1)
    275       1.1     shige 			Debugger();
    276       1.1     shige #endif
    277       1.1     shige 	}
    278       1.1     shige 
    279       1.1     shige 	printf("rebooting\n\n");
    280       1.1     shige 	if (what && *what) {
    281       1.1     shige 		if (strlen(what) > sizeof str - 5)
    282       1.1     shige 			printf("boot string too large, ignored\n");
    283       1.1     shige 		else {
    284       1.1     shige 			strcpy(str, what);
    285       1.1     shige 			ap1 = ap = str + strlen(str);
    286       1.1     shige 			*ap++ = ' ';
    287       1.1     shige 		}
    288       1.1     shige 	}
    289       1.1     shige 	*ap++ = '-';
    290       1.1     shige 	if (howto & RB_SINGLE)
    291       1.1     shige 		*ap++ = 's';
    292       1.1     shige 	if (howto & RB_KDB)
    293       1.1     shige 		*ap++ = 'd';
    294       1.1     shige 	*ap++ = 0;
    295       1.1     shige 	if (ap[-2] == '-')
    296       1.1     shige 		*ap1 = 0;
    297       1.1     shige 
    298       1.1     shige 	/* flush cache for msgbuf */
    299       1.1     shige 	__syncicache((void *)msgbuf_paddr, round_page(MSGBUFSIZE));
    300       1.1     shige 
    301       1.1     shige #if 0
    302       1.1     shige  reboot:
    303       1.1     shige #endif
    304       1.1     shige 	ppc4xx_reset();
    305       1.1     shige 
    306       1.1     shige 	printf("ppc4xx_reset() failed!\n");
    307       1.1     shige #ifdef DDB
    308       1.1     shige 	while(1)
    309       1.1     shige 		Debugger();
    310       1.1     shige #else
    311       1.1     shige 	while (1)
    312       1.1     shige 		/* nothing */;
    313       1.1     shige #endif
    314       1.1     shige }
    315       1.4     shige 
    316       1.4     shige int
    317  1.11.2.1     rmind pci_bus_maxdevs(pci_chipset_tag_t pc, int busno)
    318  1.11.2.1     rmind {
    319  1.11.2.1     rmind 
    320  1.11.2.1     rmind 	/*
    321  1.11.2.1     rmind 	 * Bus number is irrelevant.  Configuration Mechanism 1 is in
    322  1.11.2.1     rmind 	 * use, can have devices 0-32 (i.e. the `normal' range).
    323  1.11.2.1     rmind 	 */
    324  1.11.2.1     rmind 	return 31;
    325  1.11.2.1     rmind }
    326  1.11.2.1     rmind 
    327  1.11.2.1     rmind int
    328  1.11.2.3     rmind pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
    329       1.4     shige {
    330       1.4     shige 	/*
    331       1.4     shige 	 * We need to map the interrupt pin to the interrupt bit
    332       1.4     shige 	 * in the UIC associated with it.
    333       1.4     shige 	 *
    334       1.4     shige 	 * This platform has 4 PCI devices.
    335       1.4     shige 	 *
    336       1.4     shige 	 # External IRQ Mappings:
    337       1.4     shige 	 *  dev 1 (Ext IRQ3):	PCI Connector
    338       1.4     shige 	 *  dev 2 (Ext IRQ4):	PCI Connector
    339       1.4     shige 	 *  dev 3 (Ext IRQ5):	HPT IDE Controller
    340       1.4     shige 	 *  dev 4 (Ext IRQ6):	Davicom Ethernet
    341       1.4     shige 	 */
    342       1.4     shige 	static const int irqmap[4/*device*/][4/*pin*/] = {
    343       1.4     shige 		{  3,  3,  3,  3 },	/* 1: PCI Connector 1 */
    344       1.4     shige 		{  4,  4,  4,  4 },	/* 2: PCI Connector 2 */
    345       1.4     shige 		{  5,  5, -1, -1 },	/* 3: HPT IDE Controller */
    346       1.4     shige 		{  6,  6, -1, -1 },	/* 4: Damicom Ethernet */
    347       1.4     shige 	};
    348       1.4     shige 
    349       1.4     shige 	int pin, dev, irq;
    350       1.4     shige 
    351       1.4     shige 	pin = pa->pa_intrpin;
    352       1.4     shige 	dev = pa->pa_device;
    353       1.4     shige         *ihp = -1;
    354       1.4     shige 
    355       1.4     shige 	/* if interrupt pin not used... */
    356       1.4     shige 	if (pin == 0)
    357       1.4     shige 		return 1;
    358       1.4     shige 
    359       1.4     shige 	if (pin > 4) {
    360       1.4     shige 		printf("pci_intr_map: bad interrupt pin %d\n", pin);
    361       1.4     shige 		return 1;
    362       1.4     shige 	}
    363       1.4     shige 
    364       1.4     shige 	if ((dev < 1) || (dev > 4)) {
    365       1.4     shige 		printf("pci_intr_map: bad device %d\n", dev);
    366       1.4     shige 		return 1;
    367       1.4     shige 	}
    368       1.4     shige 
    369       1.4     shige 
    370       1.4     shige 	if ((irq = irqmap[dev - 1][pin - 1]) == -1) {
    371       1.4     shige 		printf("pci_intr_map: no IRQ routing for device %d pin %d\n",
    372       1.4     shige 			dev, pin);
    373       1.4     shige 		return 1;
    374       1.4     shige 	}
    375       1.4     shige 
    376       1.4     shige 	*ihp = irq + 25;
    377       1.4     shige 	return 0;
    378       1.4     shige }
    379       1.4     shige 
    380       1.4     shige void
    381       1.4     shige pci_conf_interrupt(pci_chipset_tag_t pc, int bus, int dev, int pin,
    382       1.4     shige 			int swiz, int *iline)
    383       1.4     shige {
    384       1.4     shige 
    385       1.4     shige 	static const int ilinemap[4/*device*/] = {
    386       1.4     shige 		3, 4, 5 ,6
    387       1.4     shige 	};
    388       1.4     shige 
    389       1.4     shige 	if ((dev < 1) || (dev > 4)) {
    390       1.4     shige 		printf("pci_intr_map: bad device %d\n", dev);
    391       1.4     shige 		*iline = 0;
    392       1.4     shige 		return;
    393       1.4     shige 	}
    394       1.4     shige 	*iline = ilinemap[dev - 1] + 25;
    395       1.4     shige }
    396