Home | History | Annotate | Line # | Download | only in mpcsa
mpcsa_machdep.c revision 1.2
      1  1.2  matt /*	$Id: mpcsa_machdep.c,v 1.2 2008/07/03 01:15:39 matt Exp $	*/
      2  1.2  matt /*	$NetBSD: mpcsa_machdep.c,v 1.2 2008/07/03 01:15:39 matt Exp $	*/
      3  1.2  matt 
      4  1.2  matt /*
      5  1.2  matt  * Copyright (c) 2007 Embedtronics Oy
      6  1.2  matt  * Based on tsarm_machdep.c
      7  1.2  matt  *
      8  1.2  matt  * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
      9  1.2  matt  * All rights reserved.
     10  1.2  matt  *
     11  1.2  matt  * Based on code written by Jason R. Thorpe and Steve C. Woodford for
     12  1.2  matt  * Wasabi Systems, Inc.
     13  1.2  matt  *
     14  1.2  matt  * Redistribution and use in source and binary forms, with or without
     15  1.2  matt  * modification, are permitted provided that the following conditions
     16  1.2  matt  * are met:
     17  1.2  matt  * 1. Redistributions of source code must retain the above copyright
     18  1.2  matt  *    notice, this list of conditions and the following disclaimer.
     19  1.2  matt  * 2. Redistributions in binary form must reproduce the above copyright
     20  1.2  matt  *    notice, this list of conditions and the following disclaimer in the
     21  1.2  matt  *    documentation and/or other materials provided with the distribution.
     22  1.2  matt  * 3. All advertising materials mentioning features or use of this software
     23  1.2  matt  *    must display the following acknowledgement:
     24  1.2  matt  *	This product includes software developed for the NetBSD Project by
     25  1.2  matt  *	Wasabi Systems, Inc.
     26  1.2  matt  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     27  1.2  matt  *    or promote products derived from this software without specific prior
     28  1.2  matt  *    written permission.
     29  1.2  matt  *
     30  1.2  matt  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     31  1.2  matt  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     32  1.2  matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     33  1.2  matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     34  1.2  matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     35  1.2  matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     36  1.2  matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     37  1.2  matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     38  1.2  matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     39  1.2  matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     40  1.2  matt  * POSSIBILITY OF SUCH DAMAGE.
     41  1.2  matt  */
     42  1.2  matt 
     43  1.2  matt /*
     44  1.2  matt  * Copyright (c) 1997,1998 Mark Brinicombe.
     45  1.2  matt  * Copyright (c) 1997,1998 Causality Limited.
     46  1.2  matt  * All rights reserved.
     47  1.2  matt  *
     48  1.2  matt  * Redistribution and use in source and binary forms, with or without
     49  1.2  matt  * modification, are permitted provided that the following conditions
     50  1.2  matt  * are met:
     51  1.2  matt  * 1. Redistributions of source code must retain the above copyright
     52  1.2  matt  *    notice, this list of conditions and the following disclaimer.
     53  1.2  matt  * 2. Redistributions in binary form must reproduce the above copyright
     54  1.2  matt  *    notice, this list of conditions and the following disclaimer in the
     55  1.2  matt  *    documentation and/or other materials provided with the distribution.
     56  1.2  matt  * 3. All advertising materials mentioning features or use of this software
     57  1.2  matt  *    must display the following acknowledgement:
     58  1.2  matt  *	This product includes software developed by Mark Brinicombe
     59  1.2  matt  *	for the NetBSD Project.
     60  1.2  matt  * 4. The name of the company nor the name of the author may be used to
     61  1.2  matt  *    endorse or promote products derived from this software without specific
     62  1.2  matt  *    prior written permission.
     63  1.2  matt  *
     64  1.2  matt  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     65  1.2  matt  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     66  1.2  matt  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     67  1.2  matt  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     68  1.2  matt  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     69  1.2  matt  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     70  1.2  matt  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     71  1.2  matt  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     72  1.2  matt  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     73  1.2  matt  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     74  1.2  matt  * SUCH DAMAGE.
     75  1.2  matt  *
     76  1.2  matt  * Machine dependant functions for kernel setup for Iyonix.
     77  1.2  matt  */
     78  1.2  matt 
     79  1.2  matt #include <sys/cdefs.h>
     80  1.2  matt __KERNEL_RCSID(0, "$NetBSD: mpcsa_machdep.c,v 1.2 2008/07/03 01:15:39 matt Exp $");
     81  1.2  matt 
     82  1.2  matt #include "opt_ddb.h"
     83  1.2  matt #include "opt_kgdb.h"
     84  1.2  matt #include "opt_pmap_debug.h"
     85  1.2  matt 
     86  1.2  matt #include <sys/param.h>
     87  1.2  matt #include <sys/device.h>
     88  1.2  matt #include <sys/systm.h>
     89  1.2  matt #include <sys/kernel.h>
     90  1.2  matt #include <sys/exec.h>
     91  1.2  matt #include <sys/proc.h>
     92  1.2  matt #include <sys/msgbuf.h>
     93  1.2  matt #include <sys/reboot.h>
     94  1.2  matt #include <sys/termios.h>
     95  1.2  matt #include <sys/ksyms.h>
     96  1.2  matt 
     97  1.2  matt #include <uvm/uvm_extern.h>
     98  1.2  matt 
     99  1.2  matt #include <dev/cons.h>
    100  1.2  matt 
    101  1.2  matt #include <machine/db_machdep.h>
    102  1.2  matt #include <ddb/db_sym.h>
    103  1.2  matt #include <ddb/db_extern.h>
    104  1.2  matt 
    105  1.2  matt #define	DRAM_BLOCKS	1
    106  1.2  matt #include <machine/bootconfig.h>
    107  1.2  matt #include <machine/bus.h>
    108  1.2  matt #include <machine/cpu.h>
    109  1.2  matt #include <machine/frame.h>
    110  1.2  matt #include <arm/undefined.h>
    111  1.2  matt 
    112  1.2  matt #include <arm/arm32/machdep.h>
    113  1.2  matt 
    114  1.2  matt #include <arm/at91/at91reg.h>
    115  1.2  matt #include <arm/at91/at91var.h>
    116  1.2  matt 
    117  1.2  matt #include <dev/ic/comreg.h>
    118  1.2  matt #include <dev/ic/comvar.h>
    119  1.2  matt 
    120  1.2  matt #include <machine/autoconf.h>
    121  1.2  matt 
    122  1.2  matt #include "seeprom.h"
    123  1.2  matt #if NSEEPROM > 0
    124  1.2  matt #include <net/if.h>
    125  1.2  matt #include <net/if_ether.h>
    126  1.2  matt #include <dev/i2c/i2cvar.h>
    127  1.2  matt #include <dev/i2c/at24cxxvar.h>
    128  1.2  matt #endif
    129  1.2  matt #include <arm/at91/at91twivar.h>
    130  1.2  matt 
    131  1.2  matt #if TODO
    132  1.2  matt #include "epcom.h"
    133  1.2  matt #if NEPCOM > 0
    134  1.2  matt #include <arm/ep93xx/epcomvar.h>
    135  1.2  matt #endif
    136  1.2  matt 
    137  1.2  matt #include "isa.h"
    138  1.2  matt #if NISA > 0
    139  1.2  matt #include <dev/isa/isareg.h>
    140  1.2  matt #include <dev/isa/isavar.h>
    141  1.2  matt #endif
    142  1.2  matt 
    143  1.2  matt #include <machine/isa_machdep.h>
    144  1.2  matt 
    145  1.2  matt #include <evbarm/mpcsa/mpcsareg.h>
    146  1.2  matt #endif	// TODO
    147  1.2  matt 
    148  1.2  matt #include <arm/at91/at91rm9200reg.h>
    149  1.2  matt #include <arm/at91/at91rm9200busvar.h>
    150  1.2  matt 
    151  1.2  matt #include "opt_ipkdb.h"
    152  1.2  matt #include "ksyms.h"
    153  1.2  matt 
    154  1.2  matt #include <arm/at91/at91busvar.h>
    155  1.2  matt #include <arm/at91/at91pdcreg.h>
    156  1.2  matt #include <arm/at91/at91dbgureg.h>
    157  1.2  matt #include <arm/at91/at91reg.h>
    158  1.2  matt #include <arm/at91/at91streg.h>
    159  1.2  matt 
    160  1.2  matt /*
    161  1.2  matt  * Address to call from cpu_reset() to reset the machine.
    162  1.2  matt  * This is machine architecture dependant as it varies depending
    163  1.2  matt  * on where the ROM appears when you turn the MMU off.
    164  1.2  matt  */
    165  1.2  matt 
    166  1.2  matt u_int cpu_reset_address = 0x00000000;
    167  1.2  matt 
    168  1.2  matt 
    169  1.2  matt /* boot configuration: */
    170  1.2  matt BootConfig bootconfig;		/* Boot config storage */
    171  1.2  matt char *boot_args = NULL;
    172  1.2  matt char *boot_file = NULL;
    173  1.2  matt 
    174  1.2  matt /* hmmm */
    175  1.2  matt static struct arm32_dma_range mpcsa_dma_ranges[4];
    176  1.2  matt static struct at91bus_machdep mpcsabus;
    177  1.2  matt static at91bus_tag_t old_at91bus_tag;
    178  1.2  matt 
    179  1.2  matt /* Prototypes */
    180  1.2  matt static void mpcsa_device_register(device_t dev, void *aux);
    181  1.2  matt static void mpcsabus_init(struct at91bus_clocks *);
    182  1.2  matt static void mpcsabus_peripheral_clock(int pid, int enable);
    183  1.2  matt static uint32_t mpcsabus_gpio_mask(int pid);
    184  1.2  matt 
    185  1.2  matt 
    186  1.2  matt /*
    187  1.2  matt  * void cpu_reboot(int howto, char *bootstr)
    188  1.2  matt  *
    189  1.2  matt  * Reboots the system
    190  1.2  matt  *
    191  1.2  matt  * Deal with any syncing, unmounting, dumping and shutdown hooks,
    192  1.2  matt  * then reset the CPU.
    193  1.2  matt  */
    194  1.2  matt void
    195  1.2  matt cpu_reboot(int howto, char *bootstr)
    196  1.2  matt {
    197  1.2  matt 
    198  1.2  matt 	/*
    199  1.2  matt 	 * If we are still cold then hit the air brakes
    200  1.2  matt 	 * and crash to earth fast
    201  1.2  matt 	 */
    202  1.2  matt 	if (cold) {
    203  1.2  matt 		doshutdownhooks();
    204  1.2  matt 		printf("\r\n");
    205  1.2  matt 		printf("The operating system has halted.\r\n");
    206  1.2  matt 		printf("Please press any key to reboot.\r\n");
    207  1.2  matt 		cngetc();
    208  1.2  matt 		printf("\r\nrebooting...\r\n");
    209  1.2  matt 		goto reset;
    210  1.2  matt 	}
    211  1.2  matt 
    212  1.2  matt 	/* Disable console buffering */
    213  1.2  matt 
    214  1.2  matt 	/*
    215  1.2  matt 	 * If RB_NOSYNC was not specified sync the discs.
    216  1.2  matt 	 * Note: Unless cold is set to 1 here, syslogd will die during the
    217  1.2  matt 	 * unmount.  It looks like syslogd is getting woken up only to find
    218  1.2  matt 	 * that it cannot page part of the binary in as the filesystem has
    219  1.2  matt 	 * been unmounted.
    220  1.2  matt 	 */
    221  1.2  matt 	if (!(howto & RB_NOSYNC))
    222  1.2  matt 		bootsync();
    223  1.2  matt 
    224  1.2  matt 	/* Say NO to interrupts */
    225  1.2  matt 	splhigh();
    226  1.2  matt 
    227  1.2  matt 	/* Do a dump if requested. */
    228  1.2  matt 	if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP)
    229  1.2  matt 		dumpsys();
    230  1.2  matt 
    231  1.2  matt 	/* Run any shutdown hooks */
    232  1.2  matt 	doshutdownhooks();
    233  1.2  matt 
    234  1.2  matt 	/* Make sure IRQ's are disabled */
    235  1.2  matt 	IRQdisable;
    236  1.2  matt 
    237  1.2  matt 	if (howto & RB_HALT) {
    238  1.2  matt 		printf("\r\n");
    239  1.2  matt 		printf("The operating system has halted.\r\n");
    240  1.2  matt 		printf("Please press any key to reboot.\r\n");
    241  1.2  matt 		cngetc();
    242  1.2  matt 	}
    243  1.2  matt 
    244  1.2  matt 	printf("\r\nrebooting...\r\n");
    245  1.2  matt  reset:
    246  1.2  matt 	/*
    247  1.2  matt 	 * Make really really sure that all interrupts are disabled,
    248  1.2  matt 	 * and poke the Internal Bus and Peripheral Bus reset lines.
    249  1.2  matt 	 */
    250  1.2  matt 	(void) disable_interrupts(I32_bit|F32_bit);
    251  1.2  matt 	STREG(ST_WDMR)	= ST_WDMR_EXTEN | ST_WDMR_RSTEN | 1;
    252  1.2  matt 	STREG(ST_CR)	= ST_CR_WDRST;
    253  1.2  matt 	for (;;);
    254  1.2  matt }
    255  1.2  matt 
    256  1.2  matt /*
    257  1.2  matt  * u_int initarm(...)
    258  1.2  matt  *
    259  1.2  matt  * Initial entry point on startup. This gets called before main() is
    260  1.2  matt  * entered.
    261  1.2  matt  * It should be responsible for setting up everything that must be
    262  1.2  matt  * in place when main is called.
    263  1.2  matt  * This includes
    264  1.2  matt  *   Taking a copy of the boot configuration structure.
    265  1.2  matt  *   Initialising the physical console so characters can be printed.
    266  1.2  matt  *   Setting up page tables for the kernel
    267  1.2  matt  *   Initialising interrupt controllers to a sane default state
    268  1.2  matt  */
    269  1.2  matt u_int
    270  1.2  matt initarm(void *arg)
    271  1.2  matt {
    272  1.2  matt 	u_int ret;
    273  1.2  matt 	/*
    274  1.2  matt 	 * basic AT91 initialization:
    275  1.2  matt 	 */
    276  1.2  matt 	if (at91bus_init())
    277  1.2  matt 		panic("%s: at91bus_init() failed", __FUNCTION__);
    278  1.2  matt 
    279  1.2  matt 	if (AT91_CHIP_ID() == AT91RM9200_CHIP_ID) {
    280  1.2  matt 		memcpy(&mpcsabus, at91bus_tag, sizeof(mpcsabus));
    281  1.2  matt 		mpcsabus.init = mpcsabus_init;
    282  1.2  matt 		mpcsabus.peripheral_clock = mpcsabus_peripheral_clock;
    283  1.2  matt 		mpcsabus.gpio_mask = mpcsabus_gpio_mask;
    284  1.2  matt 		old_at91bus_tag = at91bus_tag;
    285  1.2  matt 		at91bus_tag = &mpcsabus;
    286  1.2  matt 	}
    287  1.2  matt 
    288  1.2  matt  	/* Fake bootconfig structure for the benefit of pmap.c */
    289  1.2  matt  	/* XXX must make the memory description h/w independent */
    290  1.2  matt  	bootconfig.dramblocks = 1;
    291  1.2  matt  	bootconfig.dram[0].address = 0x20000000UL;
    292  1.2  matt  	bootconfig.dram[0].pages =   0x04000000UL / PAGE_SIZE;
    293  1.2  matt 	ret = at91bus_setup(&bootconfig);
    294  1.2  matt 
    295  1.2  matt 	if (AT91_CHIP_ID() != AT91RM9200_CHIP_ID)
    296  1.2  matt 		panic("%s: processor is not AT91RM9200", __FUNCTION__);
    297  1.2  matt 
    298  1.2  matt 	/* we've a specific device_register routine */
    299  1.2  matt 	evbarm_device_register = mpcsa_device_register;
    300  1.2  matt 
    301  1.2  matt 	/* We return the new stack pointer address */
    302  1.2  matt 	return ret;
    303  1.2  matt }
    304  1.2  matt 
    305  1.2  matt 
    306  1.2  matt bus_dma_tag_t
    307  1.2  matt at91_bus_dma_init(struct arm32_bus_dma_tag *dma_tag_template)
    308  1.2  matt {
    309  1.2  matt 	int i;
    310  1.2  matt 	struct arm32_bus_dma_tag *dmat;
    311  1.2  matt 
    312  1.2  matt 	for (i = 0; i < bootconfig.dramblocks; i++) {
    313  1.2  matt 		mpcsa_dma_ranges[i].dr_sysbase = bootconfig.dram[i].address;
    314  1.2  matt 		mpcsa_dma_ranges[i].dr_busbase = bootconfig.dram[i].address;
    315  1.2  matt 		mpcsa_dma_ranges[i].dr_len = bootconfig.dram[i].pages *
    316  1.2  matt 			PAGE_SIZE;
    317  1.2  matt 	}
    318  1.2  matt 
    319  1.2  matt 	dmat = dma_tag_template;
    320  1.2  matt 
    321  1.2  matt 	dmat->_ranges = mpcsa_dma_ranges;
    322  1.2  matt 	dmat->_nranges = bootconfig.dramblocks;
    323  1.2  matt 
    324  1.2  matt 	return dmat;
    325  1.2  matt }
    326  1.2  matt 
    327  1.2  matt void mpcsabus_init(struct at91bus_clocks *clocks)
    328  1.2  matt {
    329  1.2  matt 	(*old_at91bus_tag->init)(clocks);
    330  1.2  matt }
    331  1.2  matt 
    332  1.2  matt uint32_t mpcsabus_gpio_mask(int pid)
    333  1.2  matt {
    334  1.2  matt 	switch (pid) {
    335  1.2  matt 	case PID_PIOA:	return ~0x00000300U;
    336  1.2  matt 	case PID_PIOB:	return ~0x0000783FU;
    337  1.2  matt 	case PID_PIOC:	return ~0x00000000U;
    338  1.2  matt 	case PID_PIOD:	return ~0x0003F000U;
    339  1.2  matt 	default:	return ~0x00000000U;
    340  1.2  matt 	}
    341  1.2  matt }
    342  1.2  matt 
    343  1.2  matt void mpcsabus_peripheral_clock(int pid, int enable)
    344  1.2  matt {
    345  1.2  matt 	switch (pid) {
    346  1.2  matt 	case PID_TWI:
    347  1.2  matt 		if (enable) {
    348  1.2  matt 			PIOA_WRITE(PIO_ASR, 0x06000000);	// assign to peripheral A
    349  1.2  matt 			PIOA_WRITE(PIO_PDR, 0x06000000);	// assign to peripherals
    350  1.2  matt 			PIOA_WRITE(PIO_MDER, 0x06000000);	// I2C pins in open-drain mode
    351  1.2  matt 		}
    352  1.2  matt 		break;
    353  1.2  matt 
    354  1.2  matt 	case PID_SPI:
    355  1.2  matt 		if (enable) {
    356  1.2  matt 			PIOA_WRITE(PIO_ASR, 0x00000007);	// assign to peripheral A
    357  1.2  matt 			PIOA_WRITE(PIO_PDR, 0x00000007);	// assign to peripherals
    358  1.2  matt 		}
    359  1.2  matt 		break;
    360  1.2  matt 	}
    361  1.2  matt 	(*old_at91bus_tag->peripheral_clock)(pid, enable);
    362  1.2  matt }
    363  1.2  matt 
    364  1.2  matt 
    365  1.2  matt static void mpcsa_device_register(device_t dev, void *aux)
    366  1.2  matt {
    367  1.2  matt 	static uint8_t eth_addr[ETHER_ADDR_LEN];
    368  1.2  matt 
    369  1.2  matt 	if (device_is_a(dev, "at91emac")) {
    370  1.2  matt 		cfdriver_t cd = config_cfdriver_lookup("at91twi");
    371  1.2  matt 		device_t twi_dev = 0;
    372  1.2  matt 		i2c_tag_t i2c = 0;
    373  1.2  matt 		if (cd && (twi_dev = device_lookup(cd, 0)) != NULL) {
    374  1.2  matt 			struct at91twi_softc *sc = (struct at91twi_softc *)twi_dev;
    375  1.2  matt 			i2c = &sc->sc_i2c;
    376  1.2  matt 		}
    377  1.2  matt 		if (i2c && seeprom_bootstrap_read(i2c, 0x50, 0x00, 4096,
    378  1.2  matt 					   eth_addr, ETHER_ADDR_LEN) == 0) {
    379  1.2  matt 			prop_data_t pd = prop_data_create_data_nocopy(
    380  1.2  matt 				eth_addr, ETHER_ADDR_LEN);
    381  1.2  matt 			KASSERT(pd != NULL);
    382  1.2  matt 			if (prop_dictionary_set(device_properties(dev),
    383  1.2  matt 						"mac-addr", pd) == FALSE) {
    384  1.2  matt 				printf("WARNING: unable to set mac-addr property "
    385  1.2  matt 				       "for %s\n", dev->dv_xname);
    386  1.2  matt 			}
    387  1.2  matt 		} else {
    388  1.2  matt 			printf("%s: WARNING: unable to read MAC address from SEEPROM\n",
    389  1.2  matt 			       dev->dv_xname);
    390  1.2  matt 		}
    391  1.2  matt 	}
    392  1.2  matt }
    393  1.2  matt 
    394