tx39.c revision 1.26       1  1.26       uch /*	$NetBSD: tx39.c,v 1.26 2001/09/17 17:03:45 uch Exp $ */
      2   1.1       uch 
      3  1.17       uch /*-
      4  1.20       uch  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  1.20       uch  * All rights reserved.
      6  1.20       uch  *
      7  1.20       uch  * This code is derived from software contributed to The NetBSD Foundation
      8  1.20       uch  * by UCHIYAMA Yasushi.
      9   1.1       uch  *
     10   1.1       uch  * Redistribution and use in source and binary forms, with or without
     11   1.1       uch  * modification, are permitted provided that the following conditions
     12   1.1       uch  * are met:
     13   1.1       uch  * 1. Redistributions of source code must retain the above copyright
     14   1.1       uch  *    notice, this list of conditions and the following disclaimer.
     15  1.16       uch  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.16       uch  *    notice, this list of conditions and the following disclaimer in the
     17  1.16       uch  *    documentation and/or other materials provided with the distribution.
     18  1.20       uch  * 3. All advertising materials mentioning features or use of this software
     19  1.20       uch  *    must display the following acknowledgement:
     20  1.20       uch  *        This product includes software developed by the NetBSD
     21  1.20       uch  *        Foundation, Inc. and its contributors.
     22  1.20       uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.20       uch  *    contributors may be used to endorse or promote products derived
     24  1.20       uch  *    from this software without specific prior written permission.
     25   1.1       uch  *
     26  1.20       uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.20       uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.20       uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.20       uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.20       uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.20       uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.20       uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.20       uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.20       uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.20       uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.20       uch  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1       uch  */
     38   1.1       uch 
     39   1.1       uch #include "opt_tx39_debug.h"
     40   1.5       uch #include "m38813c.h"
     41   1.6       uch #include "tc5165buf.h"
     42   1.1       uch 
     43   1.1       uch #include <sys/param.h>
     44   1.1       uch #include <sys/systm.h>
     45   1.1       uch 
     46   1.1       uch #include <machine/locore.h>   /* cpu_id */
     47   1.1       uch #include <machine/bootinfo.h> /* bootinfo */
     48   1.1       uch #include <machine/sysconf.h>  /* platform */
     49   1.1       uch 
     50   1.6       uch #include <machine/platid.h>
     51   1.6       uch #include <machine/platid_mask.h>
     52   1.6       uch 
     53   1.1       uch #include <machine/bus.h>
     54   1.1       uch 
     55  1.26       uch #include <hpcmips/hpcmips/machdep.h> /* cpu_name, mem_cluster */
     56   1.1       uch 
     57   1.1       uch #include <hpcmips/tx/tx39biureg.h>
     58   1.1       uch #include <hpcmips/tx/tx39reg.h>
     59   1.1       uch #include <hpcmips/tx/tx39var.h>
     60   1.1       uch #ifdef TX391X
     61   1.1       uch #include <hpcmips/tx/tx3912videovar.h>
     62   1.1       uch #endif
     63   1.1       uch 
     64   1.1       uch #include <sys/termios.h>
     65   1.1       uch #include <sys/ttydefaults.h>
     66   1.1       uch #include <hpcmips/tx/tx39uartvar.h>
     67   1.1       uch #ifndef CONSPEED
     68   1.1       uch #define CONSPEED TTYDEF_SPEED
     69   1.1       uch #endif
     70   1.1       uch 
     71   1.5       uch /* console keyboard */
     72   1.5       uch #if NM38813C > 0
     73   1.5       uch #include <hpcmips/dev/m38813cvar.h>
     74   1.1       uch #endif
     75   1.6       uch #if NTC5165BUF > 0
     76   1.6       uch #include <hpcmips/dev/tc5165bufvar.h>
     77   1.6       uch #endif
     78   1.1       uch 
     79   1.1       uch struct tx_chipset_tag tx_chipset;
     80   1.1       uch 
     81   1.1       uch #ifdef TX39_DEBUG
     82   1.1       uch u_int32_t tx39debugflag;
     83   1.1       uch #endif
     84   1.1       uch 
     85  1.20       uch void	tx_init(void);
     86  1.20       uch int	tx39icu_intr(u_int32_t, u_int32_t, u_int32_t, u_int32_t);
     87  1.26       uch void	tx39clock_cpuspeed(int *, int *);
     88   1.1       uch 
     89   1.1       uch /* TX39-specific initialization vector */
     90  1.20       uch void	tx_cons_init(void);
     91  1.26       uch void    tx_fb_init(caddr_t *);
     92  1.20       uch void    tx_mem_init(paddr_t);
     93  1.20       uch void	tx_find_dram(paddr_t, paddr_t);
     94  1.20       uch void	tx_reboot(int, char *);
     95  1.20       uch int	tx_intr(u_int32_t, u_int32_t, u_int32_t, u_int32_t);
     96   1.1       uch 
     97   1.1       uch void
     98   1.1       uch tx_init()
     99   1.1       uch {
    100   1.1       uch 	tx_chipset_tag_t tc;
    101   1.1       uch 	int model, rev;
    102   1.8       uch 	int cpuclock;
    103   1.1       uch 
    104   1.1       uch 	tc = tx_conf_get_tag();
    105   1.1       uch 	/*
    106   1.1       uch 	 * Platform Specific Function Hooks
    107   1.1       uch 	 */
    108  1.25       uch 	platform.cpu_idle	= NULL; /* not implemented yet */
    109  1.25       uch 	platform.cons_init	= tx_cons_init;
    110  1.25       uch 	platform.fb_init	= tx_fb_init;
    111  1.25       uch 	platform.mem_init	= tx_mem_init;
    112  1.25       uch 	platform.reboot		= tx_reboot;
    113  1.25       uch 	platform.iointr		= tx39icu_intr;
    114   1.1       uch 
    115  1.19       cgd 	model = MIPS_PRID_REV(cpu_id);
    116   1.1       uch 
    117   1.1       uch 	switch (model) {
    118   1.1       uch 	default:
    119  1.23       uch 		/* Unknown TOSHIBA TX39-series */
    120  1.19       cgd 		sprintf(cpu_name, "Unknown TOSHIBA TX39-series %x", model);
    121   1.1       uch 		break;
    122   1.1       uch 	case TMPR3912:
    123   1.8       uch 		tx39clock_cpuspeed(&cpuclock, &cpuspeed);
    124   1.8       uch 
    125  1.13      sato 		sprintf(cpu_name, "TOSHIBA TMPR3912 %d.%02d MHz",
    126  1.23       uch 		    cpuclock / 1000000, (cpuclock % 1000000) / 10000);
    127  1.20       uch 		tc->tc_chipset = __TX391X;
    128   1.1       uch 		break;
    129   1.1       uch 	case TMPR3922:
    130   1.8       uch 		tx39clock_cpuspeed(&cpuclock, &cpuspeed);
    131   1.1       uch 		rev = tx_conf_read(tc, TX3922_REVISION_REG);
    132   1.8       uch 
    133  1.13      sato 		sprintf(cpu_name, "TOSHIBA TMPR3922 rev. %x.%x "
    134  1.23       uch 		    "%d.%02d MHz", (rev >> 4) & 0xf, rev & 0xf,
    135  1.23       uch 		    cpuclock / 1000000, (cpuclock % 1000000) / 10000);
    136  1.20       uch 		tc->tc_chipset = __TX392X;
    137   1.1       uch 		break;
    138   1.1       uch 	}
    139   1.1       uch }
    140   1.1       uch 
    141   1.1       uch void
    142  1.26       uch tx_fb_init(caddr_t *kernend)
    143   1.1       uch {
    144   1.1       uch #ifdef TX391X
    145  1.16       uch 	paddr_t fb_end;
    146   1.1       uch 
    147  1.16       uch 	fb_end = MIPS_KSEG0_TO_PHYS(mem_clusters[0].start +
    148  1.23       uch 	    mem_clusters[0].size - 1);
    149  1.16       uch 	tx3912video_init(MIPS_KSEG0_TO_PHYS(*kernend), &fb_end);
    150  1.16       uch 
    151   1.1       uch 	/* Skip V-RAM area */
    152  1.16       uch 	*kernend = (caddr_t)MIPS_PHYS_TO_KSEG0(fb_end);
    153   1.1       uch #endif /* TX391X */
    154   1.1       uch #ifdef TX392X
    155   1.1       uch 	/*
    156   1.1       uch 	 *  Plum V-RAM isn't accessible until pmap_bootstrap,
    157   1.7       uch 	 * at this time, frame buffer device is disabled.
    158   1.1       uch 	 */
    159   1.1       uch 	bootinfo->fb_addr = 0;
    160   1.1       uch #endif /* TX392X */
    161   1.1       uch }
    162   1.1       uch 
    163  1.14      shin void
    164  1.26       uch tx_mem_init(paddr_t kernend)
    165   1.1       uch {
    166  1.26       uch 
    167  1.14      shin 	mem_clusters[0].start = 0;
    168  1.14      shin 	mem_clusters[0].size = kernend;
    169  1.14      shin 	mem_cluster_cnt = 1;
    170  1.14      shin 	/* search DRAM bank 0 */
    171  1.14      shin 	tx_find_dram(kernend, 0x02000000);
    172   1.1       uch 
    173  1.14      shin 	/* search DRAM bank 1 */
    174  1.14      shin 	tx_find_dram(0x02000000, 0x04000000);
    175   1.5       uch 	/*
    176   1.5       uch 	 *  Clear currently unused D-RAM area
    177   1.5       uch 	 *  (For reboot Windows CE clearly)
    178   1.5       uch 	 */
    179  1.14      shin 	memset((void *)(KERNBASE + 0x400), 0, KERNTEXTOFF -
    180  1.23       uch 	    (KERNBASE + 0x800));
    181   1.2  takemura }
    182   1.2  takemura 
    183   1.2  takemura void
    184  1.26       uch tx_find_dram(paddr_t start, paddr_t end)
    185   1.2  takemura {
    186  1.14      shin 	caddr_t page, startaddr, endaddr;
    187  1.14      shin 
    188  1.14      shin 	startaddr = (void*)MIPS_PHYS_TO_KSEG1(start);
    189  1.14      shin 	endaddr = (void*)MIPS_PHYS_TO_KSEG1(end);
    190   1.1       uch 
    191   1.1       uch #define DRAM_MAGIC0 0xac1dcafe
    192   1.1       uch #define DRAM_MAGIC1 0x19700220
    193   1.1       uch 
    194   1.1       uch 	page = startaddr;
    195  1.14      shin 	if (badaddr(page, 4))
    196  1.14      shin 		return;
    197  1.14      shin 
    198  1.17       uch 	*(volatile int *)(page + 0) = DRAM_MAGIC0;
    199  1.17       uch 	*(volatile int *)(page + 4) = DRAM_MAGIC1;
    200  1.14      shin 	wbflush();
    201  1.14      shin 
    202  1.17       uch 	if (*(volatile int *)(page + 0) != DRAM_MAGIC0 ||
    203  1.17       uch 	    *(volatile int *)(page + 4) != DRAM_MAGIC1)
    204  1.14      shin 		return;
    205  1.14      shin 
    206  1.14      shin 	for (page += NBPG; page < endaddr; page += NBPG) {
    207  1.14      shin 		if (badaddr(page, 4))
    208  1.14      shin 			return;
    209  1.14      shin 
    210  1.17       uch 		if (*(volatile int *)(page + 0) == DRAM_MAGIC0 &&
    211  1.17       uch 		    *(volatile int *)(page + 4) == DRAM_MAGIC1) {
    212  1.17       uch 			goto memend_found;
    213   1.1       uch 		}
    214   1.1       uch 	}
    215  1.14      shin 
    216  1.17       uch 	/* check for 32MByte memory */
    217  1.17       uch 	page -= NBPG;
    218  1.17       uch 	*(volatile int *)(page + 0) = DRAM_MAGIC0;
    219  1.17       uch 	*(volatile int *)(page + 4) = DRAM_MAGIC1;
    220  1.17       uch 	wbflush();
    221  1.17       uch 
    222  1.17       uch 	if (*(volatile int *)(page + 0) != DRAM_MAGIC0 ||
    223  1.17       uch 	    *(volatile int *)(page + 4) != DRAM_MAGIC1)
    224  1.17       uch 		return; /* no memory in this bank */
    225  1.17       uch 
    226  1.17       uch  memend_found:
    227  1.17       uch 	mem_clusters[mem_cluster_cnt].start = start;
    228  1.17       uch 	mem_clusters[mem_cluster_cnt].size = page - startaddr;
    229  1.17       uch 
    230  1.17       uch 	/* skip kernel area */
    231  1.17       uch 	if (mem_cluster_cnt == 1)
    232  1.17       uch 		mem_clusters[mem_cluster_cnt].size -= start;
    233  1.17       uch 
    234  1.17       uch 	mem_cluster_cnt++;
    235  1.14      shin }
    236  1.14      shin 
    237  1.14      shin void
    238  1.26       uch tx_reboot(int howto, char *bootstr)
    239  1.14      shin {
    240  1.26       uch 
    241  1.14      shin 	goto *(u_int32_t *)MIPS_RESET_EXC_VEC;
    242   1.1       uch }
    243   1.1       uch 
    244   1.1       uch void
    245   1.1       uch tx_cons_init()
    246   1.1       uch {
    247   1.1       uch 	int slot;
    248  1.20       uch #define CONSPLATIDMATCH(p)						\
    249   1.6       uch 	platid_match(&platid, &platid_mask_MACH_##p)
    250   1.1       uch 
    251   1.1       uch #ifdef SERIALCONSSLOT
    252   1.1       uch 	slot = SERIALCONSSLOT;
    253   1.1       uch #else
    254   1.1       uch 	slot = TX39_UARTA;
    255   1.1       uch #endif
    256   1.1       uch 	if (bootinfo->bi_cnuse & BI_CNUSE_SERIAL) {
    257  1.23       uch 		if(txcom_cnattach(slot, CONSPEED,
    258  1.23       uch 		    (TTYDEF_CFLAG & ~(CSIZE | PARENB)) | CS8)) {
    259   1.1       uch 			panic("tx_cons_init: can't attach serial console.");
    260   1.1       uch 		}
    261   1.5       uch 	} else {
    262   1.6       uch #if NM38813C > 0
    263   1.6       uch 		if(CONSPLATIDMATCH(VICTOR_INTERLINK) &&
    264  1.23       uch 		    m38813c_cnattach(TX39_SYSADDR_CARD1)) {
    265  1.10       uch 			goto panic;
    266   1.6       uch 		}
    267   1.6       uch #endif
    268   1.6       uch #if NTC5165BUF > 0
    269  1.10       uch 		if(CONSPLATIDMATCH(COMPAQ_C) &&
    270  1.23       uch 		    tc5165buf_cnattach(TX39_SYSADDR_CS3)) {
    271  1.10       uch 			goto panic;
    272  1.10       uch 		}
    273  1.10       uch 
    274   1.6       uch 		if(CONSPLATIDMATCH(SHARP_TELIOS) &&
    275  1.23       uch 		    tc5165buf_cnattach(TX39_SYSADDR_CS1)) {
    276  1.10       uch 			goto panic;
    277  1.10       uch 		}
    278  1.10       uch 
    279  1.10       uch 		if(CONSPLATIDMATCH(SHARP_MOBILON) &&
    280  1.23       uch 		    tc5165buf_cnattach(TX39_SYSADDR_MCS0)) {
    281  1.10       uch 			goto panic;
    282   1.5       uch 		}
    283   1.5       uch #endif
    284   1.1       uch 	}
    285  1.10       uch 
    286  1.10       uch 	return;
    287  1.10       uch  panic:
    288  1.10       uch 	panic("tx_cons_init: can't init console");
    289  1.10       uch 	/* NOTREACHED */
    290   1.1       uch }
    291   1.1       uch 
    292   1.1       uch void
    293  1.26       uch tx_conf_register_intr(tx_chipset_tag_t t, void *intrt)
    294   1.1       uch {
    295  1.26       uch 
    296  1.20       uch 	KASSERT(t == &tx_chipset);
    297   1.1       uch 	tx_chipset.tc_intrt = intrt;
    298   1.1       uch }
    299   1.1       uch 
    300   1.9       uch void
    301  1.26       uch tx_conf_register_power(tx_chipset_tag_t t, void *powert)
    302   1.9       uch {
    303  1.26       uch 
    304  1.20       uch 	KASSERT(t == &tx_chipset);
    305   1.9       uch 	tx_chipset.tc_powert = powert;
    306   1.9       uch }
    307   1.9       uch 
    308   1.9       uch void
    309  1.26       uch tx_conf_register_clock(tx_chipset_tag_t t, void *clockt)
    310   1.9       uch {
    311  1.26       uch 
    312  1.20       uch 	KASSERT(t == &tx_chipset);
    313   1.9       uch 	tx_chipset.tc_clockt = clockt;
    314  1.11       uch }
    315  1.11       uch 
    316  1.11       uch void
    317  1.26       uch tx_conf_register_sound(tx_chipset_tag_t t, void *soundt)
    318  1.11       uch {
    319  1.26       uch 
    320  1.20       uch 	KASSERT(t == &tx_chipset);
    321  1.11       uch 	tx_chipset.tc_soundt = soundt;
    322  1.18       uch }
    323  1.18       uch 
    324  1.18       uch void
    325  1.26       uch tx_conf_register_video(tx_chipset_tag_t t, void *videot)
    326  1.18       uch {
    327  1.26       uch 
    328  1.20       uch 	KASSERT(t == &tx_chipset);
    329  1.18       uch 	tx_chipset.tc_videot = videot;
    330   1.9       uch }
    331   1.1       uch 
    332   1.1       uch int
    333  1.26       uch __is_set_print(u_int32_t reg, int mask, char *name)
    334   1.1       uch {
    335   1.9       uch 	const char onoff[2] = "_x";
    336   1.9       uch 	int ret = reg & mask ? 1 : 0;
    337   1.9       uch 
    338   1.9       uch 	printf("%s[%c] ", name, onoff[ret]);
    339   1.9       uch 
    340  1.23       uch 	return (ret);
    341   1.1       uch }
    342