Home | History | Annotate | Line # | Download | only in hd64461
hd64461.c revision 1.16.50.1
      1  1.16.50.1     matt /*	hd64461.c,v 1.16 2005/12/18 22:07:56 uwe Exp	*/
      2        1.1      uch 
      3        1.1      uch /*-
      4        1.3      uch  * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
      5        1.1      uch  * All rights reserved.
      6        1.1      uch  *
      7        1.1      uch  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1      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.1      uch  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1      uch  *    notice, this list of conditions and the following disclaimer in the
     17        1.1      uch  *    documentation and/or other materials provided with the distribution.
     18        1.1      uch  * 3. All advertising materials mentioning features or use of this software
     19        1.1      uch  *    must display the following acknowledgement:
     20        1.1      uch  *        This product includes software developed by the NetBSD
     21        1.1      uch  *        Foundation, Inc. and its contributors.
     22        1.1      uch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.1      uch  *    contributors may be used to endorse or promote products derived
     24        1.1      uch  *    from this software without specific prior written permission.
     25        1.1      uch  *
     26        1.1      uch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.1      uch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.1      uch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.1      uch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.1      uch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.1      uch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.1      uch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.1      uch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.1      uch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.1      uch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.1      uch  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1      uch  */
     38       1.13    lukem 
     39       1.13    lukem #include <sys/cdefs.h>
     40  1.16.50.1     matt __KERNEL_RCSID(0, "hd64461.c,v 1.16 2005/12/18 22:07:56 uwe Exp");
     41        1.1      uch 
     42        1.1      uch #include <sys/param.h>
     43        1.1      uch #include <sys/systm.h>
     44        1.1      uch #include <sys/device.h>
     45       1.16      uwe #include <sys/reboot.h>
     46        1.1      uch 
     47        1.1      uch #include <machine/bus.h>
     48        1.1      uch #include <machine/intr.h>
     49        1.4      uch #include <machine/debug.h>
     50        1.1      uch 
     51        1.1      uch #include <hpcsh/dev/hd64461/hd64461var.h>
     52        1.1      uch 
     53        1.1      uch /* HD64461 modules. INTC, TIMER, POWER modules are included in hd64461if */
     54        1.3      uch STATIC struct hd64461_module {
     55        1.1      uch 	const char *name;
     56        1.1      uch } hd64461_modules[] = {
     57        1.1      uch 	[HD64461_MODULE_VIDEO]		= { "hd64461video" },
     58        1.1      uch 	[HD64461_MODULE_PCMCIA]		= { "hd64461pcmcia" },
     59        1.1      uch 	[HD64461_MODULE_GPIO]		= { "hd64461gpio" },
     60        1.1      uch 	[HD64461_MODULE_AFE]		= { "hd64461afe" },
     61        1.1      uch 	[HD64461_MODULE_UART]		= { "hd64461uart" },
     62        1.1      uch 	[HD64461_MODULE_FIR]		= { "hd64461fir" },
     63        1.1      uch };
     64        1.1      uch #define HD64461_NMODULE							\
     65        1.1      uch 	(sizeof hd64461_modules / sizeof(struct hd64461_module))
     66        1.1      uch 
     67        1.3      uch STATIC int hd64461_match(struct device *, struct cfdata *, void *);
     68        1.3      uch STATIC void hd64461_attach(struct device *, struct device *, void *);
     69        1.3      uch STATIC int hd64461_print(void *, const char *);
     70        1.7      uch #ifdef DEBUG
     71        1.7      uch STATIC void hd64461_info(void);
     72        1.7      uch #endif
     73        1.1      uch 
     74       1.10  thorpej CFATTACH_DECL(hd64461if, sizeof(struct device),
     75       1.11  thorpej     hd64461_match, hd64461_attach, NULL, NULL);
     76        1.1      uch 
     77       1.15      uwe STATIC int
     78        1.1      uch hd64461_match(struct device *parent, struct cfdata *cf, void *aux)
     79        1.1      uch {
     80        1.5      uch 
     81        1.5      uch 	switch (cpu_product) {
     82        1.5      uch 	case CPU_PRODUCT_7709:
     83        1.5      uch 	case CPU_PRODUCT_7709A:
     84        1.5      uch 		break;
     85       1.16      uwe 
     86       1.16      uwe 	default:
     87       1.16      uwe 		return (0);	/* HD64461 only supports SH7709 interface */
     88        1.5      uch 	}
     89        1.1      uch 
     90        1.8  thorpej 	if (strcmp("hd64461if", cf->cf_name))
     91        1.1      uch 		return (0);
     92        1.1      uch 
     93        1.1      uch 	return (1);
     94        1.1      uch }
     95        1.1      uch 
     96       1.15      uwe STATIC void
     97        1.1      uch hd64461_attach(struct device *parent, struct device *self, void *aux)
     98        1.1      uch {
     99        1.7      uch 	struct hd64461_attach_args ha;
    100        1.7      uch 	struct hd64461_module *module;
    101        1.7      uch 	int i;
    102        1.1      uch 
    103        1.1      uch 	printf("\n");
    104        1.1      uch #ifdef DEBUG
    105        1.1      uch 	if (bootverbose)
    106        1.7      uch 		hd64461_info();
    107        1.1      uch #endif
    108        1.1      uch 
    109        1.7      uch 	/* Attach all sub modules */
    110        1.1      uch 	for (i = 0, module = hd64461_modules; i < HD64461_NMODULE;
    111        1.2      uch 	    i++, module++) {
    112        1.1      uch 		if (module->name == 0)
    113        1.1      uch 			continue;
    114        1.1      uch 		ha.ha_module_id = i;
    115        1.7      uch 		config_found(self, &ha, hd64461_print);
    116        1.7      uch 	}
    117        1.1      uch }
    118        1.1      uch 
    119       1.15      uwe STATIC int
    120        1.1      uch hd64461_print(void *aux, const char *pnp)
    121        1.1      uch {
    122        1.1      uch 	struct hd64461_attach_args *ha = aux;
    123        1.1      uch 
    124        1.1      uch 	if (pnp)
    125       1.12  thorpej 		aprint_normal("%s at %s",
    126        1.2      uch 		    hd64461_modules[ha->ha_module_id].name, pnp);
    127        1.1      uch 
    128        1.1      uch 	return (UNCONF);
    129        1.1      uch }
    130        1.1      uch 
    131       1.16      uwe 
    132        1.1      uch #ifdef DEBUG
    133       1.16      uwe 
    134       1.16      uwe #include <hpcsh/dev/hd64461/hd64461reg.h>
    135       1.16      uwe #include <hpcsh/dev/hd64461/hd64461intcreg.h>
    136       1.16      uwe 
    137       1.15      uwe STATIC void
    138       1.15      uwe hd64461_info(void)
    139        1.1      uch {
    140       1.15      uwe 	uint16_t r16;
    141        1.1      uch 
    142        1.3      uch 	dbg_banner_function();
    143        1.1      uch 
    144        1.1      uch 	/*
    145        1.1      uch 	 * System
    146        1.1      uch 	 */
    147  1.16.50.1     matt 	printf("STBCR (Standby Control Register)\n");
    148        1.1      uch 	r16 = hd64461_reg_read_2(HD64461_SYSSTBCR_REG16);
    149        1.3      uch #define DBG_BITMASK_PRINT(r, m)	dbg_bitmask_print(r, HD64461_SYSSTBCR_##m, #m)
    150        1.3      uch 	DBG_BITMASK_PRINT(r16, CKIO_STBY);
    151        1.3      uch 	DBG_BITMASK_PRINT(r16, SAFECKE_IST);
    152        1.3      uch 	DBG_BITMASK_PRINT(r16, SLCKE_IST);
    153        1.3      uch 	DBG_BITMASK_PRINT(r16, SAFECKE_OST);
    154        1.3      uch 	DBG_BITMASK_PRINT(r16, SLCKE_OST);
    155        1.3      uch 	DBG_BITMASK_PRINT(r16, SMIAST);
    156        1.3      uch 	DBG_BITMASK_PRINT(r16, SLCDST);
    157        1.3      uch 	DBG_BITMASK_PRINT(r16, SPC0ST);
    158        1.3      uch 	DBG_BITMASK_PRINT(r16, SPC1ST);
    159        1.3      uch 	DBG_BITMASK_PRINT(r16, SAFEST);
    160        1.3      uch 	DBG_BITMASK_PRINT(r16, STM0ST);
    161        1.3      uch 	DBG_BITMASK_PRINT(r16, STM1ST);
    162        1.3      uch 	DBG_BITMASK_PRINT(r16, SIRST);
    163        1.3      uch 	DBG_BITMASK_PRINT(r16, SURTSD);
    164        1.3      uch #undef DBG_BITMASK_PRINT
    165        1.1      uch 	printf("\n");
    166        1.1      uch 
    167        1.1      uch 	printf("SYSCR (System Configuration Register)\n");
    168        1.1      uch 	r16 = hd64461_reg_read_2(HD64461_SYSSYSCR_REG16);
    169        1.3      uch #define DBG_BITMASK_PRINT(r, m)	dbg_bitmask_print(r, HD64461_SYSSYSCR_##m, #m)
    170        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPU_BUS_IGAT);
    171        1.3      uch 	DBG_BITMASK_PRINT(r16, SPTA_IR);
    172        1.3      uch 	DBG_BITMASK_PRINT(r16, SPTA_TM);
    173        1.3      uch 	DBG_BITMASK_PRINT(r16, SPTB_UR);
    174        1.3      uch 	DBG_BITMASK_PRINT(r16, WAIT_CTL_SEL);
    175        1.3      uch 	DBG_BITMASK_PRINT(r16, SMODE1);
    176        1.3      uch 	DBG_BITMASK_PRINT(r16, SMODE0);
    177        1.3      uch #undef DBG_BITMASK_PRINT
    178        1.1      uch 	printf("\n");
    179        1.1      uch 
    180        1.1      uch 	printf("SCPUCR (CPU Data Bus Control Register)\n");
    181        1.1      uch 	r16 = hd64461_reg_read_2(HD64461_SYSSCPUCR_REG16);
    182        1.3      uch #define DBG_BITMASK_PRINT(r, m)	dbg_bitmask_print(r, HD64461_SYSSCPUCR_##m, #m)
    183        1.3      uch 	DBG_BITMASK_PRINT(r16, SPDSTOF);
    184        1.3      uch 	DBG_BITMASK_PRINT(r16, SPDSTIG);
    185        1.3      uch 	DBG_BITMASK_PRINT(r16, SPCSTOF);
    186        1.3      uch 	DBG_BITMASK_PRINT(r16, SPCSTIG);
    187        1.3      uch 	DBG_BITMASK_PRINT(r16, SPBSTOF);
    188        1.3      uch 	DBG_BITMASK_PRINT(r16, SPBSTIG);
    189        1.3      uch 	DBG_BITMASK_PRINT(r16, SPASTOF);
    190        1.3      uch 	DBG_BITMASK_PRINT(r16, SPASTIG);
    191        1.3      uch 	DBG_BITMASK_PRINT(r16, SLCDSTIG);
    192        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPU_CS56_EP);
    193        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPU_CMD_EP);
    194        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPU_ADDR_EP);
    195        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPDPU);
    196        1.3      uch 	DBG_BITMASK_PRINT(r16, SCPU_A2319_EP);
    197        1.3      uch #undef DBG_BITMASK_PRINT
    198        1.1      uch 	printf("\n");
    199        1.1      uch 
    200        1.1      uch 	printf("\n");
    201        1.1      uch 	/*
    202        1.1      uch 	 * INTC
    203        1.1      uch 	 */
    204        1.1      uch 	printf("NIRR (Interrupt Request Register)\n");
    205        1.1      uch 	r16 = hd64461_reg_read_2(HD64461_INTCNIRR_REG16);
    206        1.3      uch #define DBG_BITMASK_PRINT(r, m)	dbg_bitmask_print(r, HD64461_INTCNIRR_##m, #m)
    207        1.3      uch 	DBG_BITMASK_PRINT(r16, PCC0R);
    208        1.3      uch 	DBG_BITMASK_PRINT(r16, PCC1R);
    209        1.3      uch 	DBG_BITMASK_PRINT(r16, AFER);
    210        1.3      uch 	DBG_BITMASK_PRINT(r16, GPIOR);
    211        1.3      uch 	DBG_BITMASK_PRINT(r16, TMU0R);
    212        1.3      uch 	DBG_BITMASK_PRINT(r16, TMU1R);
    213        1.3      uch 	DBG_BITMASK_PRINT(r16, IRDAR);
    214        1.3      uch 	DBG_BITMASK_PRINT(r16, UARTR);
    215        1.3      uch #undef DBG_BITMASK_PRINT
    216        1.1      uch 	printf("\n");
    217        1.1      uch 
    218        1.1      uch 	printf("NIMR (Interrupt Mask Register)\n");
    219        1.1      uch 	r16 = hd64461_reg_read_2(HD64461_INTCNIMR_REG16);
    220        1.3      uch #define DBG_BITMASK_PRINT(r, m)	dbg_bitmask_print(r, HD64461_INTCNIMR_##m, #m)
    221        1.3      uch 	DBG_BITMASK_PRINT(r16, PCC0M);
    222        1.3      uch 	DBG_BITMASK_PRINT(r16, PCC1M);
    223        1.3      uch 	DBG_BITMASK_PRINT(r16, AFEM);
    224        1.3      uch 	DBG_BITMASK_PRINT(r16, GPIOM);
    225        1.3      uch 	DBG_BITMASK_PRINT(r16, TMU0M);
    226        1.3      uch 	DBG_BITMASK_PRINT(r16, TMU1M);
    227        1.3      uch 	DBG_BITMASK_PRINT(r16, IRDAM);
    228        1.3      uch 	DBG_BITMASK_PRINT(r16, UARTM);
    229        1.3      uch #undef DBG_BITMASK_PRINT
    230        1.1      uch 	printf("\n");
    231        1.1      uch 
    232        1.3      uch 	dbg_banner_line();
    233        1.1      uch }
    234        1.1      uch #endif /* DEBUG */
    235