diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2008-11-26 14:47:51 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2008-11-26 14:47:51 +0000 |
commit | 8c0bacb71bee1ba1a169af8ebda59567a87ef88f (patch) | |
tree | ca1be99d32f89df936b5892e92ad6376c513e755 /sys/arch/moko | |
parent | c6d65e6e11637f113bb9637929b7a7ba1382553e (diff) |
Start at the port of OpenBSD to the OpenMoko hardware. Work in progress.
Diffstat (limited to 'sys/arch/moko')
49 files changed, 2488 insertions, 0 deletions
diff --git a/sys/arch/moko/Makefile b/sys/arch/moko/Makefile new file mode 100644 index 00000000000..d9ff48db4cc --- /dev/null +++ b/sys/arch/moko/Makefile @@ -0,0 +1,38 @@ +# $OpenBSD: Makefile,v 1.1 2008/11/26 14:47:50 drahn Exp $ +# $NetBSD: Makefile,v 1.1 2001/06/12 08:32:46 chris Exp $ + +# Makefile for moko tags file and boot blocks + +S=${.CURDIR}/../.. +.include "$S/kern/Make.tags.inc" + +SUBDIR= stand + +NOPROG= noprog +NOMAN= noman + +TMOKO= $S/arch/moko/tags + +SMOKO= $S/arch/moko/dev/*.[ch] $S/arch/moko/include/*.h \ + $S/arch/moko/moko/*.[ch] $S/arch/arm/arm/*.[ch] \ + $S/arch/arm/include/*.h $S/arch/arm/mainbus/*.[ch] \ +AMOKO= $S/arch/moko/moko/*.S $S/arch/arm/arm/*.S \ + $S/arch/arm/mainbus/*.S + +# Directories in which to place tags links +DMOKO= dev include moko + +tags: + -ctags -wdtf ${TMOKO} ${SMOKO} ${COMM} + egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AMOKO} | \ + sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ + >> ${TMOKO} + sort -o ${TMOKO} ${TMOKO} + +links: + -for i in ${DMOKO}; do \ + (cd $$i && { rm -f tags; ln -s ${TMOKO} tags; }) done + +obj: _SUBDIRUSE + +.include <bsd.prog.mk> diff --git a/sys/arch/moko/compile/.cvsignore b/sys/arch/moko/compile/.cvsignore new file mode 100644 index 00000000000..b72af3039e6 --- /dev/null +++ b/sys/arch/moko/compile/.cvsignore @@ -0,0 +1,2 @@ +GENERIC +RAMDISK diff --git a/sys/arch/moko/conf/Makefile.moko b/sys/arch/moko/conf/Makefile.moko new file mode 100644 index 00000000000..deda7bc6086 --- /dev/null +++ b/sys/arch/moko/conf/Makefile.moko @@ -0,0 +1,220 @@ +# $OpenBSD: Makefile.moko,v 1.1 2008/11/26 14:47:50 drahn Exp $ + +# Makefile for OpenBSD +# +# This makefile is constructed from a machine description: +# config machineid +# Most changes should be made in the machine description +# /sys/arch/moko/conf/``machineid'' +# after which you should do +# config machineid +# Machine generic makefile changes should be made in +# /sys/arch/moko/conf/Makefile.moko +# after which config should be rerun for all machines of that type. +# +# N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE +# IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING +# +# -DTRACE compile in kernel tracing hooks +# -DQUOTA compile in file system quotas + +# DEBUG is set to -g if debugging. +# PROF is set to -pg if profiling. + +.include <bsd.own.mk> + +MKDEP?= mkdep +SIZE?= size +STRIP?= strip + +# source tree is located via $S relative to the compilation directory +.ifndef S +S!= cd ../../../..; pwd +.endif +THISARM= $S/arch/moko +ARM= $S/arch/arm + +INCLUDES= -nostdinc -I. -I$S -I$S/arch +CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -D__moko__ +CDIAGFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ + -Wno-uninitialized -Wno-format -Wno-main \ + -Wstack-larger-than-2047 -Wvariable-decl + +CMACHFLAGS= -ffreestanding +#CMACHFLAGS= -march=armv4 -mtune=strongarm -ffreestanding +.if ${IDENT:M-DNO_PROPOLICE} +CMACHFLAGS+= -fno-stack-protector +.endif +CMACHFLAGS+= -msoft-float -fno-builtin-printf -fno-builtin-log + +COPTS?= -O2 +CFLAGS= ${DEBUG} ${CDIAGFLAGS} ${CMACHFLAGS} ${COPTS} ${PIPE} +AFLAGS= -x assembler-with-cpp -D_LOCORE ${CMACHFLAGS} +#LINKFLAGS= -Ttext 0xF0000020 -e start --warn-common +#LINKFLAGS= -T ${THISARM}/conf/kern.ldscript +LINKFLAGS= -T ldscript +LINKFLAGS+= --warn-common +STRIPFLAGS= -g -X -x + +HOSTCC= ${CC} +HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//} +HOSTED_CFLAGS= ${CFLAGS} + +# compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP} +# where TYPE is NORMAL, DRIVER, or PROFILE; SUFFIX is the file suffix, +# capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file +# is marked as config-dependent. + +NORMAL_C_NOP= ${CC} ${CFLAGS} ${CPPFLAGS} -c $< +NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< +NORMAL_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< + +DRIVER_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< +DRIVER_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< + +NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< +NORMAL_S_C= ${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $< + +HOSTED_C= ${HOSTCC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $< + +%OBJS + +%CFILES + +%SFILES + +# load lines for config "xxx" will be emitted as: +# xxx: ${SYSTEM_DEP} swapxxx.o +# ${SYSTEM_LD_HEAD} +# ${SYSTEM_LD} swapxxx.o +# ${SYSTEM_LD_TAIL} +SYSTEM_OBJ= ${BOARDTYPE}_start.o locore.o param.o ioconf.o ${OBJS} +SYSTEM_DEP= Makefile ${SYSTEM_OBJ} +SYSTEM_LD_HEAD= rm -f $@ +SYSTEM_LD_HEAD+=; \ + cat ${ARM}/conf/ldscript.head ${ARM}/conf/ldscript.tail | \ + sed -e 's/@KERNEL_BASE_PHYS@/${KERNEL_BASE_PHYS}/' \ + -e 's/@KERNEL_BASE_VIRT@/${KERNEL_BASE_VIRT}/' \ + > ldscript + +SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ + ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o +SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ + +DEBUG?= +.if ${DEBUG} == "-g" +LINKFLAGS+= -X +SYSTEM_LD_TAIL+=; \ + echo mv $@ $@.gdb; rm -f $@.gdb; mv $@ $@.gdb; \ + echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \ + ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb +.else +LINKFLAGS+= -x +.endif + +%LOAD + +assym.h: $S/kern/genassym.sh ${ARM}/arm/genassym.cf Makefile + cat ${ARM}/arm/genassym.cf | \ + sh $S/kern/genassym.sh ${CC} ${CFLAGS} \ + ${CPPFLAGS} ${PARAM} > assym.h.tmp && \ + mv -f assym.h.tmp assym.h + +param.c: $S/conf/param.c + rm -f param.c + cp $S/conf/param.c . + +param.o: param.c Makefile + ${NORMAL_C_C} + +mcount.o: $S/lib/libkern/mcount.c Makefile + ${NORMAL_C_NOP} + +ioconf.o: ioconf.c + ${NORMAL_C} + +newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} + sh $S/conf/newvers.sh + ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c + + +clean:: + rm -f eddep *bsd bsd.gdb tags *.[io] [a-z]*.s \ + [Ee]rrs linterrs makelinks assym.h + +lint: + @lint -hbxncez -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \ + ${CFILES} ioconf.c param.c | \ + grep -v 'static function .* unused' + +tags: + @echo "see $S/kern/Makefile for tags" + +links: + egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ + sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink + echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ + sort -u | comm -23 - dontlink | \ + sed 's,.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks + sh makelinks && rm -f dontlink makelinks + +SRCS= ${ARM}/arm/locore.S \ + param.c ioconf.c ${CFILES} ${SFILES} +depend:: .depend +.depend: ${SRCS} assym.h param.c ${APMINC} + ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${ARM}/arm/locore.S + ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} +.if ${SFILES} != "" + ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} +.endif + cat ${ARM}/arm/genassym.cf | \ + sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ + ${CPPFLAGS} + @sed -e 's/.*\.o:.* /assym.h: /' < assym.dep >> .depend + @rm -f assym.dep + + +# depend on root or device configuration +autoconf.o conf.o: Makefile + +# depend on network or filesystem configuration +uipc_domain.o uipc_proto.o vfs_conf.o: Makefile +if.o if_tun.o if_loop.o if_ethersubr.o: Makefile +if_arp.o if_ether.o: Makefile +ip_input.o ip_output.o in_pcb.o in_proto.o: Makefile +tcp_subr.o tcp_timer.o tcp_output.o: Makefile + +# depend on maxusers +machdep.o: Makefile + +# depend on CPU configuration +locore.o machdep.o: Makefile + +${BOARDTYPE}_start.o: ${THISARM}/moko/${BOARDTYPE}_start.S assym.h + ${NORMAL_S} + +locore.o: ${ARM}/arm/locore.S assym.h + ${NORMAL_S} + +bsd.rd: bsd + cp bsd bsd.rd + $S/../distrib/${BOARDTYPE}/ramdisk/rdsetroot < $S/../distrib/${BOARDTYPE}/ramdisk/mr.fs bsd.rd + +bsd.img: bsd.rd + ${OBJCOPY} -O binary bsd.rd bsd.i + gzip < bsd.i > bsd.rdi.gz + mkimage -A arm -O openbsd -T kernel -C gzip -a ${KERNEL_BASE_PHYS} -e ${KERNEL_BASE_PHYS} -n "OpenBSD" -d bsd.rdi.gz bsd.img + +# The install target can be redefined by putting a +# install-kernel-${MACHINE_NAME} target into /etc/mk.conf +MACHINE_NAME!= uname -n +install: install-kernel-${MACHINE_NAME} +.if !target(install-kernel-${MACHINE_NAME}}) +install-kernel-${MACHINE_NAME}: + rm -f /obsd + ln /bsd /obsd + cp bsd /nbsd + mv /nbsd /bsd +.endif + +%RULES diff --git a/sys/arch/moko/conf/RAMDISK b/sys/arch/moko/conf/RAMDISK new file mode 100644 index 00000000000..889b2d01b44 --- /dev/null +++ b/sys/arch/moko/conf/RAMDISK @@ -0,0 +1,63 @@ +# $OpenBSD: RAMDISK,v 1.1 2008/11/26 14:47:50 drahn Exp $ + +machine moko arm + +options TIMEZONE=0 # time zone to adjust RTC time by +options DST=0 # daylight saving time used by RTC +options FFS # UFS +options CD9660 # ISO 9660 + Rock Ridge file system +options MSDOSFS # MS-DOS file system +options INET # IP + ICMP + TCP + UDP +options INET6 # IPv6 (needs INET) +options DDB # kernel debugger +options EXT2FS # Second Extended Filesystem + +options ARM32 + +options CACHE_CLEAN_BLOCK_INTR +options SSCOM_S3C2410 +options SSCOM0CONSOLE + +options S3C2XX0_XTAL_CLK=12000000 + +makeoptions KERNEL_BASE_PHYS="0x30300000" +makeoptions KERNEL_BASE_VIRT="0xc0300000" +makeoptions BOARDTYPE="moko" + +# estimated number of users + +maxusers 32 + +# CPU options +options CPU_ARM9 # Support the XScale core +#options XSCALE_CACHE_WRITE_THROUGH + +#option WSDISPLAY_COMPAT_USL # VT handling +#option WSDISPLAY_COMPAT_RAWKBD # provide raw scancodes; needed for X11 +#option WSDISPLAY_DEFAULTSCREENS=2 # initial number of text consoles +#option WSDISPLAY_COMPAT_PCVT # emulate some ioctls; needed for X11 + +config bsd root on rd0a swap on rd0b + +# The main bus device +mainbus0 at root +cpu0 at mainbus? +ssio0 at mainbus? +# integrated UART +sscom0 at ssio? index 0 # irq 70 +#sscom1 at ssio? index 1 # irq 73 + + +# Pseudo-Devices +pseudo-device wsmux 2 # mouse & keyboard multiplexor +#pseudo-device crypto 1 +pseudo-device loop 1 # network loopback +pseudo-device bpfilter 1 # packet filter +pseudo-device rd 1 # ram disk +pseudo-device bio 1 # ioctl multiplexing device + +options BOOT_CONFIG # boot-time kernel config + +# RAMDISK stuff +options MINIROOTSIZE=5120 +options RAMDISK_HOOKS diff --git a/sys/arch/moko/conf/files.moko b/sys/arch/moko/conf/files.moko new file mode 100644 index 00000000000..68112eafc20 --- /dev/null +++ b/sys/arch/moko/conf/files.moko @@ -0,0 +1,70 @@ +# $OpenBSD: files.moko,v 1.1 2008/11/26 14:47:50 drahn Exp $ +# +# First try for arm-specific configuration info +# + +maxpartitions 16 +maxusers 2 8 64 + +major {wd = 16} +major {sd = 24} +major {cd = 26} +major {rd = 18} + +file arch/arm/arm/conf.c + +file arch/moko/moko/moko_machdep.c + +# +# Machine-independent SCSI drivers +# +include "../../../scsi/files.scsi" +include "../../../dev/atapiscsi/files.atapiscsi" + +include "arch/arm/s3c2xx0/files.s3c2410" + + + + +# +# Machine-independent ATA drivers +# +include "dev/ata/files.ata" + +# Generic MD files +file arch/moko/moko/autoconf.c + +file arch/arm/arm/disksubr.c disk + +# ARM FPE +file arch/arm/fpe-arm/armfpe_glue.S armfpe +file arch/arm/fpe-arm/armfpe_init.c armfpe +file arch/arm/fpe-arm/armfpe.s armfpe + +# Machine-independent I2O drivers. +include "dev/i2o/files.i2o" + +# Include WSCONS stuff +include "dev/wscons/files.wscons" +include "dev/rasops/files.rasops" +include "dev/wsfont/files.wsfont" +include "dev/pckbc/files.pckbc" + +# Include USB stuff +include "dev/usb/files.usb" + +# Bluetooth +include "dev/bluetooth/files.bluetooth" + +# Media Independent Interface (mii) +include "dev/mii/files.mii" + +# +# Machine-independent SD/MMC drivers +# +include "dev/sdmmc/files.sdmmc" + +# +# Machine-independent 1-Wire drivers +# +include "dev/onewire/files.onewire" diff --git a/sys/arch/moko/include/_types.h b/sys/arch/moko/include/_types.h new file mode 100644 index 00000000000..4c23f11f13c --- /dev/null +++ b/sys/arch/moko/include/_types.h @@ -0,0 +1,11 @@ +/* $OpenBSD: _types.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ + +#ifndef _MOKO_TYPES_H_ +#define _MOKO_TYPES_H_ + +#include <arm/_types.h> + +#define __HAVE_GENERIC_SOFT_INTERRUPTS +#define __HAVE_TIMECOUNTER + +#endif diff --git a/sys/arch/moko/include/apmvar.h b/sys/arch/moko/include/apmvar.h new file mode 100644 index 00000000000..dfce83ed6c6 --- /dev/null +++ b/sys/arch/moko/include/apmvar.h @@ -0,0 +1 @@ +#include <arm/apmvar.h> diff --git a/sys/arch/moko/include/asm.h b/sys/arch/moko/include/asm.h new file mode 100644 index 00000000000..58a834bd185 --- /dev/null +++ b/sys/arch/moko/include/asm.h @@ -0,0 +1,4 @@ +/* $OpenBSD: asm.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: asm.h,v 1.3 2001/11/25 15:55:54 thorpej Exp $ */ + +#include <arm/asm.h> diff --git a/sys/arch/moko/include/atomic.h b/sys/arch/moko/include/atomic.h new file mode 100644 index 00000000000..a06ed7888eb --- /dev/null +++ b/sys/arch/moko/include/atomic.h @@ -0,0 +1,10 @@ +/* $OpenBSD: atomic.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ + +/* Public Domain */ + +#ifndef __MOKO_ATOMIC_H__ +#define __MOKO_ATOMIC_H__ + +#include <arm/atomic.h> + +#endif /* __MOKO_ATOMIC_H__ */ diff --git a/sys/arch/moko/include/bootconfig.h b/sys/arch/moko/include/bootconfig.h new file mode 100644 index 00000000000..23618d1be9a --- /dev/null +++ b/sys/arch/moko/include/bootconfig.h @@ -0,0 +1,76 @@ +/* $OpenBSD: bootconfig.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: bootconfig.h,v 1.2 2001/06/21 22:08:28 chris Exp $ */ + +/* + * Copyright (c) 1994 Mark Brinicombe. + * Copyright (c) 1994 Brini. + * All rights reserved. + * + * This code is derived from software written for Brini by Mark Brinicombe + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Mark Brinicombe + * for the NetBSD Project. + * 4. The name of the company nor the name of the author may 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 OR CONTRIBUTORS 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. + * + * boot configuration structures + * + * Created : 12/09/94 + * + * Based on kate/boot/bootconfig.h + */ + +typedef struct _PhysMem { + u_int address; + u_int pages; +} PhysMem; + +#if defined(_KERNEL) + +#define DRAM_BLOCKS 1 + +typedef struct _BootConfig { + PhysMem dram[DRAM_BLOCKS]; + u_int dramblocks; +} BootConfig; + +extern BootConfig bootconfig; +#define MAX_BOOT_STRING 255 + +#define BOOTOPT_TYPE_BOOLEAN 0 +#define BOOTOPT_TYPE_STRING 1 +#define BOOTOPT_TYPE_INT 2 +#define BOOTOPT_TYPE_BININT 3 +#define BOOTOPT_TYPE_HEXINT 4 +#define BOOTOPT_TYPE_MASK 7 + +int get_bootconf_option (char *string, char *option, int type, void *result); + +extern char *boot_args; +extern char *boot_file; +#endif /* _KERNEL */ + +/* End of bootconfig.h */ diff --git a/sys/arch/moko/include/bus.h b/sys/arch/moko/include/bus.h new file mode 100644 index 00000000000..46728f6516e --- /dev/null +++ b/sys/arch/moko/include/bus.h @@ -0,0 +1,4 @@ +/* $OpenBSD: bus.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: bus.h,v 1.3 2001/11/25 15:55:55 thorpej Exp $ */ + +#include <arm/bus.h> diff --git a/sys/arch/moko/include/cdefs.h b/sys/arch/moko/include/cdefs.h new file mode 100644 index 00000000000..a59e4e43757 --- /dev/null +++ b/sys/arch/moko/include/cdefs.h @@ -0,0 +1,3 @@ +/* $OpenBSD: cdefs.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ + +#include <arm/cdefs.h> diff --git a/sys/arch/moko/include/conf.h b/sys/arch/moko/include/conf.h new file mode 100644 index 00000000000..fc45d3f86a6 --- /dev/null +++ b/sys/arch/moko/include/conf.h @@ -0,0 +1,19 @@ +/* $OpenBSD: conf.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: conf.h,v 1.8 2002/02/10 12:26:03 chris Exp $ */ + +#ifndef _MOKO_CONF_H +#define _MOKO_CONF_H + +#include <sys/conf.h> + +/* + * MOKO specific device includes go in here + */ + +//#define CONF_HAVE_APM +#define CONF_HAVE_USB +#define CONF_HAVE_WSCONS + +#include <arm/conf.h> + +#endif /* _MOKO_CONF_H */ diff --git a/sys/arch/moko/include/cpu.h b/sys/arch/moko/include/cpu.h new file mode 100644 index 00000000000..cfd9d838561 --- /dev/null +++ b/sys/arch/moko/include/cpu.h @@ -0,0 +1,4 @@ +/* $OpenBSD: cpu.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: cpu.h,v 1.3 2001/11/25 15:55:55 thorpej Exp $ */ + +#include <arm/cpu.h> diff --git a/sys/arch/moko/include/db_machdep.h b/sys/arch/moko/include/db_machdep.h new file mode 100644 index 00000000000..3f4b9333e38 --- /dev/null +++ b/sys/arch/moko/include/db_machdep.h @@ -0,0 +1,4 @@ +/* $OpenBSD: db_machdep.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: db_machdep.h,v 1.3 2001/11/25 15:55:55 thorpej Exp $ */ + +#include <arm/db_machdep.h> diff --git a/sys/arch/moko/include/disklabel.h b/sys/arch/moko/include/disklabel.h new file mode 100644 index 00000000000..1c0a7c435f1 --- /dev/null +++ b/sys/arch/moko/include/disklabel.h @@ -0,0 +1,3 @@ +/* $OpenBSD: disklabel.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ + +#include <arm/disklabel.h> diff --git a/sys/arch/moko/include/endian.h b/sys/arch/moko/include/endian.h new file mode 100644 index 00000000000..99041e16d9d --- /dev/null +++ b/sys/arch/moko/include/endian.h @@ -0,0 +1,4 @@ +/* $OpenBSD: endian.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: endian.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ + +#include <arm/endian.h> diff --git a/sys/arch/moko/include/exec.h b/sys/arch/moko/include/exec.h new file mode 100644 index 00000000000..53fa453b754 --- /dev/null +++ b/sys/arch/moko/include/exec.h @@ -0,0 +1,3 @@ +/* $OpenBSD: exec.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* public domain */ +#include <arm/exec.h> diff --git a/sys/arch/moko/include/float.h b/sys/arch/moko/include/float.h new file mode 100644 index 00000000000..fa2e2249f53 --- /dev/null +++ b/sys/arch/moko/include/float.h @@ -0,0 +1,4 @@ +/* $OpenBSD: float.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: float.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ + +#include <arm/float.h> diff --git a/sys/arch/moko/include/fp.h b/sys/arch/moko/include/fp.h new file mode 100644 index 00000000000..9abd735a1ec --- /dev/null +++ b/sys/arch/moko/include/fp.h @@ -0,0 +1,4 @@ +/* $OpenBSD: fp.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: fp.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ + +#include <arm/fp.h> diff --git a/sys/arch/moko/include/frame.h b/sys/arch/moko/include/frame.h new file mode 100644 index 00000000000..110ad69ce5b --- /dev/null +++ b/sys/arch/moko/include/frame.h @@ -0,0 +1,4 @@ +/* $OpenBSD: frame.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: frame.h,v 1.1 2001/06/08 22:23:00 chris Exp $ */ + +#include <arm/frame.h> diff --git a/sys/arch/moko/include/ieee.h b/sys/arch/moko/include/ieee.h new file mode 100644 index 00000000000..e1ad062370b --- /dev/null +++ b/sys/arch/moko/include/ieee.h @@ -0,0 +1,4 @@ +/* $OpenBSD: ieee.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: ieee.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ + +#include <arm/ieee.h> diff --git a/sys/arch/moko/include/ieeefp.h b/sys/arch/moko/include/ieeefp.h new file mode 100644 index 00000000000..efcd0ff7ec2 --- /dev/null +++ b/sys/arch/moko/include/ieeefp.h @@ -0,0 +1,4 @@ +/* $OpenBSD: ieeefp.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: ieeefp.h,v 1.3 2001/11/25 15:55:56 thorpej Exp $ */ + +#include <arm/ieeefp.h> diff --git a/sys/arch/moko/include/internal_types.h b/sys/arch/moko/include/internal_types.h new file mode 100644 index 00000000000..a9e0d001189 --- /dev/null +++ b/sys/arch/moko/include/internal_types.h @@ -0,0 +1,7 @@ +/* $OpenBSD: internal_types.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* Public domain */ +#ifndef _MACHINE_INTERNAL_TYPES_H_ +#define _MACHINE_INTERNAL_TYPES_H_ + +#include "arm/internal_types.h" +#endif diff --git a/sys/arch/moko/include/intr.h b/sys/arch/moko/include/intr.h new file mode 100644 index 00000000000..f0658764ab2 --- /dev/null +++ b/sys/arch/moko/include/intr.h @@ -0,0 +1,105 @@ +/* $OpenBSD: intr.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: intr.h,v 1.12 2003/06/16 20:00:59 thorpej Exp $ */ + +/* + * Copyright (c) 2001, 2003 Wasabi Systems, Inc. + * All rights reserved. + * + * Written by Jason R. Thorpe for Wasabi Systems, Inc. + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed for the NetBSD Project by + * Wasabi Systems, Inc. + * 4. The name of Wasabi Systems, Inc. may not be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC + * 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. + */ + +#ifndef _EVBARM_INTR_H_ +#define _EVBARM_INTR_H_ + +#ifdef _KERNEL + + +/* Interrupt priority "levels". */ +#define IPL_NONE 0 /* nothing */ +#define IPL_SOFT 1 /* generic software interrupts */ +#define IPL_SOFTCLOCK 2 /* software clock interrupt */ +#define IPL_SOFTNET 3 /* software network interrupt */ +#define IPL_BIO 4 /* block I/O */ +#define IPL_NET 5 /* network */ +#define IPL_SOFTSERIAL 6 /* software serial interrupt */ +#define IPL_TTY 7 /* terminals */ +#define IPL_VM 8 /* memory allocation */ +#define IPL_AUDIO 9 /* audio device */ +#define IPL_CLOCK 10 /* clock interrupt */ +#define IPL_STATCLOCK 11 /* statistics clock interrupt */ +#define IPL_HIGH 12 /* everything */ +#define IPL_SERIAL 13 /* serial device */ + +#define NIPL 14 + +/* Interrupt sharing types. */ +#define IST_NONE 0 /* none */ +#define IST_PULSE 1 /* pulsed */ +#define IST_EDGE 2 /* edge-triggered */ +#define IST_LEVEL 3 /* level-triggered */ + +#define IST_LEVEL_LOW IST_LEVEL +#define IST_LEVEL_HIGH 4 +#define IST_EDGE_FALLING IST_EDGE +#define IST_EDGE_RISING 5 +#define IST_EDGE_BOTH 6 + +#ifndef _LOCORE + +#include <sys/device.h> +#include <sys/queue.h> + +#define splhigh() _splraise(IPL_HIGH) +#define splsoft() _splraise(IPL_SOFT) +#define splsoftclock() _splraise(IPL_SOFTCLOCK) +#define splsoftnet() _splraise(IPL_SOFTNET) +#define splbio() _splraise(IPL_BIO) +#define splnet() _splraise(IPL_NET) +#define spltty() _splraise(IPL_TTY) +#define splvm() _splraise(IPL_VM) +#define splaudio() _splraise(IPL_AUDIO) +#define splclock() _splraise(IPL_CLOCK) +#define splstatclock() _splraise(IPL_STATCLOCK) +#define splserial() _splraise(IPL_SERIAL) + +#define spl0() _spllower(IPL_NONE) + +#define splsched() splhigh() +#define spllock() splhigh() + +#endif /* ! _LOCORE */ + +#include <arm/s3c2xx0/s3c2410_intr.h> + +#endif /* _KERNEL */ + +#endif /* _EVBARM_INTR_H_ */ + diff --git a/sys/arch/moko/include/limits.h b/sys/arch/moko/include/limits.h new file mode 100644 index 00000000000..96b0001ec1e --- /dev/null +++ b/sys/arch/moko/include/limits.h @@ -0,0 +1,4 @@ +/* $OpenBSD: limits.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: limits.h,v 1.3 2001/11/25 15:55:57 thorpej Exp $ */ + +#include <arm/limits.h> diff --git a/sys/arch/moko/include/loadfile_machdep.h b/sys/arch/moko/include/loadfile_machdep.h new file mode 100644 index 00000000000..4390f306174 --- /dev/null +++ b/sys/arch/moko/include/loadfile_machdep.h @@ -0,0 +1,52 @@ +/* $OpenBSD: loadfile_machdep.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: loadfile_machdep.h,v 1.1 1999/04/29 03:17:12 tsubai Exp $ */ + +/*- + * Copyright (c) 1999 The NetBSD Foundation, Inc. + * All rights reserved. + * + * This code is derived from software contributed to The NetBSD Foundation + * by Christos Zoulas. + * + * 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. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``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 FOUNDATION OR CONTRIBUTORS + * 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. + */ + +#define BOOT_ELF +#define ELFSIZE 32 + +#define LOAD_KERNEL (LOAD_ALL & ~LOAD_TEXTA) +#define COUNT_KERNEL (COUNT_ALL & ~COUNT_TEXTA) + +#define LOADADDR(a) ((((u_long)(a)) + offset)&0xfffffff) +#define ALIGNENTRY(a) ((u_long)(a)) +#define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) +#define BCOPY(s, d, c) memcpy((void *)LOADADDR(d), (void *)(s), (c)) +#define BZERO(d, c) memset((void *)LOADADDR(d), 0, (c)) +#define WARN(a) (void)(printf a, \ + printf((errno ? ": %s\n" : "\n"), \ + strerror(errno))) +#define PROGRESS(a) (void) printf a +#define ALLOC(a) alloc(a) +#define FREE(a, b) free(a, b) +#define OKMAGIC(a) ((a) == OMAGIC) + +void run_loadfile(u_long *, int); diff --git a/sys/arch/moko/include/lock.h b/sys/arch/moko/include/lock.h new file mode 100644 index 00000000000..707232f98cf --- /dev/null +++ b/sys/arch/moko/include/lock.h @@ -0,0 +1,4 @@ +/* $OpenBSD: lock.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: lock.h,v 1.3 2001/11/25 15:55:57 thorpej Exp $ */ + +#include <arm/lock.h> diff --git a/sys/arch/moko/include/mutex.h b/sys/arch/moko/include/mutex.h new file mode 100644 index 00000000000..6324ae4058d --- /dev/null +++ b/sys/arch/moko/include/mutex.h @@ -0,0 +1,3 @@ +/* $OpenBSD: mutex.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* public domain */ +#include <arm/mutex.h> diff --git a/sys/arch/moko/include/param.h b/sys/arch/moko/include/param.h new file mode 100644 index 00000000000..3fa378f46b5 --- /dev/null +++ b/sys/arch/moko/include/param.h @@ -0,0 +1,51 @@ +/* $OpenBSD: param.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: param.h,v 1.4 2002/02/12 06:58:19 thorpej Exp $ */ + +/* + * Copyright (c) 1994,1995 Mark Brinicombe. + * All rights reserved. + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the RiscBSD team. + * 4. The name "RiscBSD" nor the name of the author may be used to + * endorse or promote products derived from this software without specific + * prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY RISCBSD ``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 RISCBSD OR CONTRIBUTORS 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. + */ + +#ifndef _MOKO_PARAM_H_ +#define _MOKO_PARAM_H_ + +/* + * 1 page should be enough + */ +#ifndef MSGBUFSIZE +#define MSGBUFSIZE (1*NBPG) +#endif + +#include <arm/param.h> + +#define _MACHINE moko +#define MACHINE "moko" + +#endif /* _MOKO_PARAM_H_ */ diff --git a/sys/arch/moko/include/pcb.h b/sys/arch/moko/include/pcb.h new file mode 100644 index 00000000000..680c1fe87b5 --- /dev/null +++ b/sys/arch/moko/include/pcb.h @@ -0,0 +1,4 @@ +/* $OpenBSD: pcb.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: pcb.h,v 1.3 2001/11/25 15:55:57 thorpej Exp $ */ + +#include <arm/pcb.h> diff --git a/sys/arch/moko/include/pio.h b/sys/arch/moko/include/pio.h new file mode 100644 index 00000000000..1360b2c43f7 --- /dev/null +++ b/sys/arch/moko/include/pio.h @@ -0,0 +1,4 @@ +/* $OpenBSD: pio.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: pio.h,v 1.3 2001/12/07 23:09:33 chris Exp $ */ + +#include <arm/pio.h> diff --git a/sys/arch/moko/include/pmap.h b/sys/arch/moko/include/pmap.h new file mode 100644 index 00000000000..2be90c7642d --- /dev/null +++ b/sys/arch/moko/include/pmap.h @@ -0,0 +1,4 @@ +/* $OpenBSD: pmap.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: pmap.h,v 1.2 2001/11/23 17:29:01 thorpej Exp $ */ + +#include <arm/pmap.h> diff --git a/sys/arch/moko/include/proc.h b/sys/arch/moko/include/proc.h new file mode 100644 index 00000000000..7612fc2e983 --- /dev/null +++ b/sys/arch/moko/include/proc.h @@ -0,0 +1,4 @@ +/* $OpenBSD: proc.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: proc.h,v 1.3 2001/11/25 15:55:57 thorpej Exp $ */ + +#include <arm/proc.h> diff --git a/sys/arch/moko/include/profile.h b/sys/arch/moko/include/profile.h new file mode 100644 index 00000000000..6f5dac5f8d2 --- /dev/null +++ b/sys/arch/moko/include/profile.h @@ -0,0 +1,4 @@ +/* $OpenBSD: profile.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: profile.h,v 1.3 2001/11/25 15:55:57 thorpej Exp $ */ + +#include <arm/profile.h> diff --git a/sys/arch/moko/include/psl.h b/sys/arch/moko/include/psl.h new file mode 100644 index 00000000000..bea8545a2c9 --- /dev/null +++ b/sys/arch/moko/include/psl.h @@ -0,0 +1 @@ +/* $OpenBSD: psl.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ diff --git a/sys/arch/moko/include/ptrace.h b/sys/arch/moko/include/ptrace.h new file mode 100644 index 00000000000..3e6c527c823 --- /dev/null +++ b/sys/arch/moko/include/ptrace.h @@ -0,0 +1,4 @@ +/* $OpenBSD: ptrace.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: ptrace.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/ptrace.h> diff --git a/sys/arch/moko/include/reg.h b/sys/arch/moko/include/reg.h new file mode 100644 index 00000000000..f5890b92e76 --- /dev/null +++ b/sys/arch/moko/include/reg.h @@ -0,0 +1,4 @@ +/* $OpenBSD: reg.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: reg.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/reg.h> diff --git a/sys/arch/moko/include/reloc.h b/sys/arch/moko/include/reloc.h new file mode 100644 index 00000000000..a3f2d660180 --- /dev/null +++ b/sys/arch/moko/include/reloc.h @@ -0,0 +1,2 @@ +/* $OpenBSD: reloc.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +#include <arm/reloc.h> diff --git a/sys/arch/moko/include/setjmp.h b/sys/arch/moko/include/setjmp.h new file mode 100644 index 00000000000..0b9adcf6bf3 --- /dev/null +++ b/sys/arch/moko/include/setjmp.h @@ -0,0 +1,4 @@ +/* $OpenBSD: setjmp.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: setjmp.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/setjmp.h> diff --git a/sys/arch/moko/include/signal.h b/sys/arch/moko/include/signal.h new file mode 100644 index 00000000000..a372fb8119d --- /dev/null +++ b/sys/arch/moko/include/signal.h @@ -0,0 +1,4 @@ +/* $OpenBSD: signal.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: signal.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/signal.h> diff --git a/sys/arch/moko/include/spinlock.h b/sys/arch/moko/include/spinlock.h new file mode 100644 index 00000000000..784f95c8aee --- /dev/null +++ b/sys/arch/moko/include/spinlock.h @@ -0,0 +1,7 @@ + +/* $OpenBSD: spinlock.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +#ifndef _MOKO_SPINLOCK_H_ +#define _MOKO_SPINLOCK_H_ +#include <arm/spinlock.h> +#endif /* _MOKO_SPINLOCK_H_ */ + diff --git a/sys/arch/moko/include/stdarg.h b/sys/arch/moko/include/stdarg.h new file mode 100644 index 00000000000..8d28cc23536 --- /dev/null +++ b/sys/arch/moko/include/stdarg.h @@ -0,0 +1,4 @@ +/* $OpenBSD: stdarg.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: stdarg.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/stdarg.h> diff --git a/sys/arch/moko/include/sysarch.h b/sys/arch/moko/include/sysarch.h new file mode 100644 index 00000000000..c63aca4c916 --- /dev/null +++ b/sys/arch/moko/include/sysarch.h @@ -0,0 +1,4 @@ +/* $OpenBSD: sysarch.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: sysarch.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/sysarch.h> diff --git a/sys/arch/moko/include/trap.h b/sys/arch/moko/include/trap.h new file mode 100644 index 00000000000..8223c2b18bf --- /dev/null +++ b/sys/arch/moko/include/trap.h @@ -0,0 +1,4 @@ +/* $OpenBSD: trap.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: trap.h,v 1.3 2001/11/25 15:55:58 thorpej Exp $ */ + +#include <arm/trap.h> diff --git a/sys/arch/moko/include/vmparam.h b/sys/arch/moko/include/vmparam.h new file mode 100644 index 00000000000..14a3a237c34 --- /dev/null +++ b/sys/arch/moko/include/vmparam.h @@ -0,0 +1,86 @@ +/* $OpenBSD: vmparam.h,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: vmparam.h,v 1.23 2003/05/22 05:47:07 thorpej Exp $ */ + +/* + * Copyright (c) 1988 The Regents of the University of California. + * All rights reserved. + * + * 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. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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. + */ + +#ifndef _ARM32_VMPARAM_H_ +#define _ARM32_VMPARAM_H_ + +#define ARM_KERNEL_BASE 0xc0000000 + +#include <arm/vmparam.h> + +#ifdef _KERNEL +/* + * Address space constants + */ + +/* + * The line between user space and kernel space + * Mappings >= KERNEL_BASE are constant across all processes + */ +#define KERNEL_BASE ARM_KERNEL_BASE + +/* + * Override the default pager_map size, there's not enough KVA. + */ +#define PAGER_MAP_SIZE (4 * 1024 * 1024) + +/* + * Size of User Raw I/O map + */ + +#define USRIOSIZE 300 + +/* virtual sizes (bytes) for various kernel submaps */ + +#define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) + +/* + * max number of non-contig chunks of physical RAM you can have + */ + +#define VM_PHYSSEG_MAX 1 +#define VM_PHYSSEG_STRAT VM_PSTRAT_RANDOM + +/* + * this indicates that we can't add RAM to the VM system after the + * vm system is init'd. + */ + +#define VM_PHYSSEG_NOADD + +#endif /* _KERNEL */ + +#define VM_NFREELIST 1 +#define VM_FREELIST_DEFAULT 0 + + +#endif /* _ARM32_VMPARAM_H_ */ diff --git a/sys/arch/moko/moko/autoconf.c b/sys/arch/moko/moko/autoconf.c new file mode 100644 index 00000000000..21a5afd339c --- /dev/null +++ b/sys/arch/moko/moko/autoconf.c @@ -0,0 +1,152 @@ +/* $OpenBSD: autoconf.c,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: autoconf.c,v 1.2 2001/09/05 16:17:36 matt Exp $ */ + +/* + * Copyright (c) 1994-1998 Mark Brinicombe. + * Copyright (c) 1994 Brini. + * All rights reserved. + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Mark Brinicombe for + * the NetBSD project. + * 4. The name of the company nor the name of the author may 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 OR CONTRIBUTORS 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. + * + * RiscBSD kernel project + * + * autoconf.c + * + * Autoconfiguration functions + */ + +#include <sys/param.h> +#include <sys/systm.h> +#include <sys/reboot.h> +#include <sys/disklabel.h> +#include <sys/device.h> +#include <sys/conf.h> +#include <sys/kernel.h> +#include <sys/timeout.h> +#include <sys/malloc.h> + +#include <uvm/uvm_extern.h> + +#include <machine/bootconfig.h> +#include <machine/intr.h> +#include <dev/cons.h> + +int booted_partition; +struct device *bootdv = NULL; +extern char *boot_file; + +void dumpconf(void); + +/* + * Now that we are fully operational, we can checksum the + * disks, and using some heuristics, hopefully are able to + * always determine the correct root disk. + */ +void +diskconf() +{ +#if 0 + dev_t tmpdev; +#endif + +#if 0 + /* + * Configure root, swap, and dump area. This is + * currently done by running the same checksum + * algorithm over all known disks, as was done in + * /boot. Then we basically fixup the *dev vars + * from the info we gleaned from this. + */ + dkcsumattach(); +#endif + +#if 0 + /* + * XXX + * zaurus bootblocks currently pass in "bsd" instead of + * "device:bsd", or any such thing, making this a real pain. + */ + if (bootdv == NULL) + bootdv = parsedisk("wd0a", strlen("wd0a"), 0, &tmpdev); + if (bootdv == NULL) + printf("boot device: lookup '%s' failed.\n", boot_file); + else + printf("boot device: %s\n", bootdv->dv_xname); +#endif + + setroot(bootdv, 0, RB_USERREQ); + dumpconf(); + +} + +void +device_register(struct device *dev, void *aux) +{ +} + +/* + * void cpu_configure() + * + * Configure all the root devices + * The root devices are expected to configure their own children + */ +void +cpu_configure(void) +{ + softintr_init(); + + /* + * Since various PCI interrupts could be routed via the ICU + * (for PCI devices in the bridge) we need to set up the ICU + * now so that these interrupts can be established correctly + * i.e. This is a hack. + */ + + config_rootfound("mainbus", NULL); + + /* + * We can not know which is our root disk, defer + * until we can checksum blocks to figure it out. + */ + cold = 0; + + /* Time to start taking interrupts so lets open the flood gates .... */ + (void)spl0(); + +} + +struct nam2blk nam2blk[] = { + { "wd", 16 }, + { "sd", 24 }, + { "cd", 26 }, + { "rd", 18 }, + { "raid", 71 }, + { "vnd", 19 }, + { NULL, -1 } +}; diff --git a/sys/arch/moko/moko/moko_machdep.c b/sys/arch/moko/moko/moko_machdep.c new file mode 100644 index 00000000000..c16c410523d --- /dev/null +++ b/sys/arch/moko/moko/moko_machdep.c @@ -0,0 +1,1233 @@ +/* $OpenBSD: moko_machdep.c,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ +/* $NetBSD: lubbock_machdep.c,v 1.2 2003/07/15 00:25:06 lukem Exp $ */ + +/* + * Copyright (c) 2002, 2003 Genetec Corporation. All rights reserved. + * Written by Hiroyuki Bessho for Genetec Corporation. + * + * 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 Genetec Corporation may not be used to endorse or + * promote products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``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 GENETEC CORPORATION + * 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. + * + */ +/* + * Copyright (c) 2001 Wasabi Systems, Inc. + * All rights reserved. + * + * Written by Jason R. Thorpe for Wasabi Systems, Inc. + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed for the NetBSD Project by + * Wasabi Systems, Inc. + * 4. The name of Wasabi Systems, Inc. may not be used to endorse + * or promote products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC + * 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. + */ + +/* + * Copyright (c) 1997,1998 Mark Brinicombe. + * Copyright (c) 1997,1998 Causality Limited. + * All rights reserved. + * + * 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. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by Mark Brinicombe + * for the NetBSD Project. + * 4. The name of the company nor the name of the author may 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 OR CONTRIBUTORS 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/param.h> +#include <sys/device.h> +#include <sys/systm.h> +#include <sys/kernel.h> +#include <sys/exec.h> +#include <sys/proc.h> +#include <sys/msgbuf.h> +#include <sys/reboot.h> +#include <sys/termios.h> +#include <sys/kcore.h> + +#include <uvm/uvm_extern.h> + +#include <sys/conf.h> +#include <sys/queue.h> +#include <sys/device.h> +#include <dev/cons.h> +#include <dev/ic/smc91cxxreg.h> + +#include <machine/db_machdep.h> +#include <ddb/db_sym.h> +#include <ddb/db_extern.h> +#ifdef KGDB +#include <sys/kgdb.h> +#endif + +#include <machine/bootconfig.h> +#include <machine/bus.h> +#include <machine/cpu.h> +#include <machine/frame.h> +#include <arm/kcore.h> +#include <arm/machdep.h> +#include <machine/intr.h> +#include <arm/undefined.h> + +#include <arm/s3c2xx0/s3c2410reg.h> +#include <arm/s3c2xx0/s3c2410var.h> + +#ifdef CONF_HAVE_APM +#include "apm.h" +#if NAPM > 0 +#include <moko/dev/moko_apm.h> +#endif +#endif + +#include "wsdisplay.h" + +/* + * Address to map I/O registers in early initialize stage. + */ +#define SMDK2410_IO_VBASE 0xfd000000 + +/* Kernel text starts 3MB in from the bottom of the kernel address space. */ +#define KERNEL_OFFSET 0x00300000 +#define KERNEL_TEXT_BASE (KERNEL_BASE + KERNEL_OFFSET) +#define KERNEL_VM_BASE (KERNEL_BASE + 0x04000000) + +/* + * The range 0xc1000000 - 0xccffffff is available for kernel VM space + * Core-logic registers and I/O mappings occupy 0xfd000000 - 0xffffffff + */ +#define KERNEL_VM_SIZE 0x10000000 + +/* + * Address to call from cpu_reset() to reset the machine. + * This is machine architecture dependant as it varies depending + * on where the ROM appears when you turn the MMU off. + */ + +u_int cpu_reset_address = 0; + +/* Define various stack sizes in pages */ +#define IRQ_STACK_SIZE 1 +#define ABT_STACK_SIZE 1 +#ifdef IPKDB +#define UND_STACK_SIZE 2 +#else +#define UND_STACK_SIZE 1 +#endif + +BootConfig bootconfig; /* Boot config storage */ +char *boot_args = NULL; +char *boot_file = NULL; + +paddr_t physical_start; +paddr_t physical_freestart; +paddr_t physical_freeend; +paddr_t physical_end; +u_int free_pages; +int physmem = 0; + +/*int debug_flags;*/ +#ifndef PMAP_STATIC_L1S +int max_processes = 64; /* Default number */ +#endif /* !PMAP_STATIC_L1S */ + +/* Physical and virtual addresses for some global pages */ +pv_addr_t systempage; +pv_addr_t irqstack; +pv_addr_t undstack; +pv_addr_t abtstack; +extern pv_addr_t kernelstack; +pv_addr_t minidataclean; + +paddr_t msgbufphys; + +extern u_int data_abort_handler_address; +extern u_int prefetch_abort_handler_address; +extern u_int undefined_handler_address; + +#ifdef PMAP_DEBUG +extern int pmap_debug_level; +#endif + +#define KERNEL_PT_SYS 0 /* Page table for mapping proc0 zero page */ +#define KERNEL_PT_KERNEL 1 /* Page table for mapping kernel */ +#define KERNEL_PT_KERNEL_NUM 32 +#define KERNEL_PT_VMDATA (KERNEL_PT_KERNEL+KERNEL_PT_KERNEL_NUM) + /* Page tables for mapping kernel VM */ +#define KERNEL_PT_VMDATA_NUM 8 /* start with 32MB of KVM */ +#define NUM_KERNEL_PTS (KERNEL_PT_VMDATA + KERNEL_PT_VMDATA_NUM) + +pv_addr_t kernel_pt_table[NUM_KERNEL_PTS]; + +extern struct user *proc0paddr; + +#define BOOT_STRING_MAGIC 0x4f425344 + +char bootargs[MAX_BOOT_STRING]; +void process_kernel_args(char *); + +/* Prototypes */ + +void consinit(void); +void early_clkman(u_int, int); +void kgdb_port_init(void); +void change_clock(uint32_t v); + +bs_protos(bs_notimpl); + +#include "sscom.h" +#if NSSCOM > 0 +#include <arch/arm/s3c2xx0/sscom_var.h> +#endif + +#ifndef CONSPEED +#define CONSPEED B115200 /* What RedBoot uses */ +#endif +#ifndef CONMODE +#define CONMODE ((TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8) /* 8N1 */ +#endif + +int comcnspeed = CONSPEED; +int comcnmode = CONMODE; + + +/* + * void boot(int howto, char *bootstr) + * + * Reboots the system + * + * Deal with any syncing, unmounting, dumping and shutdown hooks, + * then reset the CPU. + */ +void +boot(int howto) +{ + if (cold) { + /* + * If the system is cold, just halt, unless the user + * explicitely asked for reboot. + */ + if ((howto & RB_USERREQ) == 0) + howto |= RB_HALT; + goto haltsys; + } + + /* + * If RB_NOSYNC was not specified sync the discs. + * Note: Unless cold is set to 1 here, syslogd will die during the + * unmount. It looks like syslogd is getting woken up only to find + * that it cannot page part of the binary in as the filesystem has + * been unmounted. + */ + if (!(howto & RB_NOSYNC)) + bootsync(howto); + + /* Say NO to interrupts */ + splhigh(); + +#if 0 + /* Do a dump if requested. */ + if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP) + dumpsys(); +#endif + +haltsys: + doshutdownhooks(); + + /* Make sure IRQ's are disabled */ + IRQdisable; + + if (howto & RB_HALT) { +#if NAPM > 0 + if (howto & RB_POWERDOWN) { + + printf("\nAttempting to power down...\n"); + delay(6000000); + zapm_poweroff(); + } +#endif + + printf("The operating system has halted.\n"); + printf("Please press any key to reboot.\n\n"); + cnpollc(1); + cngetc(); + cnpollc(0); + } + + printf("rebooting...\n"); + delay(6000000); +#if NAPM > 0 + zapm_restart(); +#endif + printf("reboot failed; spinning\n"); + while(1); + /*NOTREACHED*/ +} + +static __inline +pd_entry_t * +read_ttb(void) +{ + long ttb; + + __asm __volatile("mrc p15, 0, %0, c2, c0, 0" : "=r" (ttb)); + + + return (pd_entry_t *)(ttb & ~((1<<14)-1)); +} + +/* + * Mapping table for core kernel memory. These areas are mapped in + * init time at fixed virtual address with section mappings. + */ + +#define _A(a) ((a) & ~L1_S_OFFSET) +#define _S(s) (((s) + L1_S_SIZE - 1) & ~(L1_S_SIZE-1)) + +#define _V(n) (SMDK2410_IO_VBASE + (n) * L1_S_SIZE) + +#define GPIO_VBASE _V(0) +#define INTCTL_VBASE _V(1) +#define CLKMAN_VBASE _V(2) +#define UART_VBASE _V(3) +#define MOKO_VBASE_FREE _V(4) + +const struct pmap_devmap smdk2410_devmap[] = { + { + GPIO_VBASE, + _A(S3C2410_GPIO_BASE), + _S(S3C2410_GPIO_SIZE), + VM_PROT_READ|VM_PROT_WRITE, + PTE_NOCACHE + }, { + INTCTL_VBASE, + _A(S3C2410_INTCTL_BASE), + _S(S3C2410_INTCTL_SIZE), + VM_PROT_READ|VM_PROT_WRITE, + PTE_NOCACHE + }, { + CLKMAN_VBASE, + _A(S3C2410_CLKMAN_BASE), + _S(S3C24X0_CLKMAN_SIZE), + VM_PROT_READ|VM_PROT_WRITE, + PTE_NOCACHE + }, { /* UART registers for UART0, 1, 2. */ + UART_VBASE, + _A(S3C2410_UART0_BASE), + _S(S3C2410_UART_BASE(3) - S3C2410_UART0_BASE), + VM_PROT_READ|VM_PROT_WRITE, + PTE_NOCACHE + }, { + 0, 0, 0, 0 + } +}; + +#undef _A +#undef _S + +#define VERBOSE_INIT_ARM +#if 1 +static void +map_io_area(paddr_t pagedir) +{ + int loop; + + /* + * Map devices we can map w/ section mappings. + */ + loop = 0; + while (smdk2410_devmap[loop].pd_size) { + vsize_t sz; + +#ifdef VERBOSE_INIT_ARM + printf("%08lx -> %08lx @ %08lx\n", smdk2410_devmap[loop].pd_pa, + smdk2410_devmap[loop].pd_pa + smdk2410_devmap[loop].pd_size - 1, + smdk2410_devmap[loop].pd_va); +#endif + for (sz = 0; sz < smdk2410_devmap[loop].pd_size; sz += L1_S_SIZE) + pmap_map_section(pagedir, + smdk2410_devmap[loop].pd_va + sz, + smdk2410_devmap[loop].pd_pa + sz, + smdk2410_devmap[loop].pd_prot, + smdk2410_devmap[loop].pd_cache); + ++loop; + } +} +#endif + +/* + * simple memory mapping function used in early bootstrap stage + * before pmap is initialized. + * size and cacheability are ignored and map one section with nocache. + */ +static vaddr_t section_free = MOKO_VBASE_FREE; + +static int +bootstrap_bs_map(void *t, bus_addr_t bpa, bus_size_t size, + int cacheable, bus_space_handle_t *bshp) +{ + u_long startpa; + vaddr_t va; + pd_entry_t *pagedir = read_ttb(); + /* This assumes PA==VA for page directory */ + + /* search smdk2410_devmap for desired mapping */ + { + int i; + for (i = 0; smdk2410_devmap[i].pd_va != 0; i++) { + if (smdk2410_devmap[i].pd_pa <= bpa && + smdk2410_devmap[i].pd_pa+L1_S_SIZE > bpa) { + /* falls in region */ + *bshp = (bus_space_handle_t) + (smdk2410_devmap[i].pd_va + + (bpa - smdk2410_devmap[i].pd_pa)); + return (0); + } + } + }; + + va = section_free; + section_free += L1_S_SIZE; + + startpa = trunc_page(bpa); + pmap_map_section((vaddr_t)pagedir, va, startpa, + VM_PROT_READ | VM_PROT_WRITE, PTE_NOCACHE); + cpu_tlb_flushD(); + + *bshp = (bus_space_handle_t)(va + (bpa - startpa)); + + return(0); +} + +/* + * u_int initarm(...) + * + * Initial entry point on startup. This gets called before main() is + * entered. + * It should be responsible for setting up everything that must be + * in place when main is called. + * This includes + * Taking a copy of the boot configuration structure. + * Initialising the physical console so characters can be printed. + * Setting up page tables for the kernel + * Relocating the kernel to the bottom of physical memory + */ +u_int ol1pagetable; +u_int +initarm(void *arg) +{ + extern cpu_kcore_hdr_t cpu_kcore_hdr; + int loop; + int loop1; + u_int l1pagetable; + pv_addr_t kernel_l1pt; + paddr_t memstart; + psize_t memsize; + extern u_int32_t esym; /* &_end if no symbols are loaded */ + +#if 0 + int led_data = 0; +#endif + /* early bus_space_map support */ + int (*map_func_save)(void *, bus_addr_t, bus_size_t, int, + bus_space_handle_t *); +#if 0 + struct bus_space tmp_bs_tag; + + + /* XXX */ + /* start 32.768KHz OSC */ + ioreg_write(PXA2X0_CLKMAN_BASE + 0x08, 2); +#endif + + /* + * Heads up ... Setup the CPU / MMU / TLB functions + */ + if (set_cpufuncs()) + panic("cpu not recognized!"); + + /* Get ready for splfoo() */ + s3c2xx0_intr_bootstrap(INTCTL_VBASE); + + + +#if 0 + /* Calibrate the delay loop. */ +#endif + +#if 0 + /* + * Okay, RedBoot has provided us with the following memory map: + * + * Physical Address Range Description + * ----------------------- ---------------------------------- + * 0x00000000 - 0x01ffffff flash Memory (32MB) + * 0x04000000 - 0x05ffffff Application flash Memory (32MB) + * 0x08000000 - 0x080000ff I/O baseboard registers + * 0x0a000000 - 0x0a0fffff SRAM (1MB) + * 0x0c000000 - 0x0c0fffff Ethernet Controller + * 0x0e000000 - 0x0e0fffff Ethernet Controller (Attribute) + * 0x10000000 - 0x103fffff SA-1111 Companion Chip + * 0x14000000 - 0x17ffffff Expansion Card (64MB) + * 0x40000000 - 0x480fffff Processor Registers + * 0xa0000000 - 0xa3ffffff SDRAM Bank 0 (64MB) + * + * + * Virtual Address Range X C B Description + * ----------------------- - - - ---------------------------------- + * 0x00000000 - 0x00003fff N Y Y SDRAM + * 0x00004000 - 0x000fffff N Y N Boot ROM + * 0x00100000 - 0x01ffffff N N N Application Flash + * 0x04000000 - 0x05ffffff N N N Exp Application Flash + * 0x08000000 - 0x080fffff N N N I/O baseboard registers + * 0x0a000000 - 0x0a0fffff N N N SRAM + * 0x40000000 - 0x480fffff N N N Processor Registers + * 0xa0000000 - 0xa000ffff N Y N RedBoot SDRAM + * 0xa0017000 - 0xa3ffffff Y Y Y SDRAM + * 0xc0000000 - 0xcfffffff Y Y Y Cache Flush Region + * (done by this routine) + * 0xfd000000 - 0xfd0000ff N N N I/O baseboard registers + * 0xfd100000 - 0xfd2fffff N N N Processor Registers. + * 0xfd200000 - 0xfd2fffff N N N 0x10800000 registers + * + * The first level page table is at 0xa0004000. There are also + * 2 second-level tables at 0xa0008000 and 0xa0008400. + * + */ + +#endif + { + /* + * Tweak U-boots's pagetable so that we can access to + * some registers at same VA before and after installing + * our page table. + */ + paddr_t ttb = (paddr_t)read_ttb(); + map_io_area(ttb); + + cpu_tlb_flushD(); + } + + /* + * Examine the boot args string for options we need to know about + * now. + */ + /* XXX should really be done after setting up the console, but we + * XXX need to parse the console selection flags right now. */ + process_kernel_args((char *)0x30000000+KERNEL_OFFSET - MAX_BOOT_STRING - 1); + + +#if 0 + /* setup GPIO for BTUART, in case bootloader doesn't take care of it */ + pxa2x0_gpio_bootstrap(ZAURUS_GPIO_VBASE); + pxa2x0_gpio_set_function(42, GPIO_ALT_FN_1_IN); + pxa2x0_gpio_set_function(43, GPIO_ALT_FN_2_OUT); + pxa2x0_gpio_set_function(44, GPIO_ALT_FN_1_IN); + pxa2x0_gpio_set_function(45, GPIO_ALT_FN_2_OUT); + + /* FFUART */ + pxa2x0_gpio_set_function(34, GPIO_ALT_FN_1_IN); + pxa2x0_gpio_set_function(39, GPIO_ALT_FN_2_OUT); + pxa2x0_gpio_set_function(35, GPIO_ALT_FN_1_IN); + pxa2x0_gpio_set_function(40, GPIO_ALT_FN_2_OUT); + pxa2x0_gpio_set_function(41, GPIO_ALT_FN_2_OUT); + + /* STUART */ + pxa2x0_gpio_set_function(46, GPIO_ALT_FN_2_IN); + pxa2x0_gpio_set_function(47, GPIO_ALT_FN_1_OUT); +#endif + + /* XXX */ + pmap_devmap_bootstrap(l1pagetable, smdk2410_devmap); + /* + * Temporarily replace bus_space_map() functions so that + * console devices can get mapped. + * + * Note that this relies upon the fact that both regular + * and a4x bus_space tags use the same map function. + */ + map_func_save = s3c2xx0_bs_tag.bs_map; + s3c2xx0_bs_tag.bs_map = bootstrap_bs_map; + + /* setup a serial console for very early boot */ + consinit(); + +#ifdef KGDB + kgdb_port_init(); +#endif + + + /* Talk to the user */ + printf("\nOpenBSD/moko booting ...\n"); + + { + /* XXX - all Zaurus have this for now, fix memory sizing */ + memstart = 0x30000000; + memsize = 0x04000000; /* 64MB */ + } + +#define DEBUG +#ifdef DEBUG + printf("initarm: Configuring system ...\n"); +#endif + + /* Fake bootconfig structure for the benefit of pmap.c */ + /* XXX must make the memory description h/w independant */ + bootconfig.dramblocks = 1; + bootconfig.dram[0].address = memstart; + bootconfig.dram[0].pages = memsize / PAGE_SIZE; + + /* + * Set up the variables that define the availablilty of + * physical memory. For now, we're going to set + * physical_freestart to 0x30000000+KERNEL_OFFSET (where the kernel + * was loaded), and allocate the memory we need downwards. + * If we get too close to the page tables that RedBoot + * set up, we will panic. We will update physical_freestart + * and physical_freeend later to reflect what pmap_bootstrap() + * wants to see. + * + * XXX pmap_bootstrap() needs an enema. + */ + physical_start = bootconfig.dram[0].address; + physical_end = physical_start + (bootconfig.dram[0].pages * PAGE_SIZE); + + physical_freestart = 0x30009000UL; + physical_freeend = 0x30000000UL+KERNEL_OFFSET; + + physmem = (physical_end - physical_start) / PAGE_SIZE; + +#ifdef DEBUG + /* Tell the user about the memory */ + printf("physmemory: %d pages at 0x%08lx -> 0x%08lx\n", physmem, + physical_start, physical_end - 1); +#endif + + /* + * Okay, the kernel starts 2MB in from the bottom of physical + * memory. We are going to allocate our bootstrap pages downwards + * from there. + * + * We need to allocate some fixed page tables to get the kernel + * going. We allocate one page directory and a number of page + * tables and store the physical addresses in the kernel_pt_table + * array. + * + * The kernel page directory must be on a 16K boundary. The page + * tables must be on 4K bounaries. What we do is allocate the + * page directory on the first 16K boundary that we encounter, and + * the page tables on 4K boundaries otherwise. Since we allocate + * at least 3 L2 page tables, we are guaranteed to encounter at + * least one 16K aligned region. + */ + +#ifdef VERBOSE_INIT_ARM + printf("Allocating page tables\n"); +#endif + + free_pages = (physical_freeend - physical_freestart) / PAGE_SIZE; + +#ifdef VERBOSE_INIT_ARM + printf("freestart = 0x%08lx, free_pages = %d (0x%08x)\n", + physical_freestart, free_pages, free_pages); +#endif + + /* Define a macro to simplify memory allocation */ +#define valloc_pages(var, np) \ + alloc_pages((var).pv_pa, (np)); \ + (var).pv_va = KERNEL_BASE + (var).pv_pa - physical_start; + +#define alloc_pages(var, np) \ + physical_freeend -= ((np) * PAGE_SIZE); \ + if (physical_freeend < physical_freestart) \ + panic("initarm: out of memory"); \ + (var) = physical_freeend; \ + free_pages -= (np); \ + memset((char *)(var), 0, ((np) * PAGE_SIZE)); + + loop1 = 0; + kernel_l1pt.pv_pa = 0; + for (loop = 0; loop <= NUM_KERNEL_PTS; ++loop) { + /* Are we 16KB aligned for an L1 ? */ + if (((physical_freeend - L1_TABLE_SIZE) & (L1_TABLE_SIZE - 1)) == 0 + && kernel_l1pt.pv_pa == 0) { + valloc_pages(kernel_l1pt, L1_TABLE_SIZE / PAGE_SIZE); + } else { + valloc_pages(kernel_pt_table[loop1], + L2_TABLE_SIZE / PAGE_SIZE); + ++loop1; + } + } + + /* This should never be able to happen but better confirm that. */ + if (!kernel_l1pt.pv_pa || (kernel_l1pt.pv_pa & (L1_TABLE_SIZE-1)) != 0) + panic("initarm: Failed to align the kernel page directory"); + + /* + * Allocate a page for the system page mapped to V0x00000000 + * This page will just contain the system vectors and can be + * shared by all processes. + */ + alloc_pages(systempage.pv_pa, 1); + + /* Allocate stacks for all modes */ + valloc_pages(irqstack, IRQ_STACK_SIZE); + valloc_pages(abtstack, ABT_STACK_SIZE); + valloc_pages(undstack, UND_STACK_SIZE); + valloc_pages(kernelstack, UPAGES); + +#ifdef VERBOSE_INIT_ARM + printf("IRQ stack: p0x%08lx v0x%08lx\n", irqstack.pv_pa, + irqstack.pv_va); + printf("ABT stack: p0x%08lx v0x%08lx\n", abtstack.pv_pa, + abtstack.pv_va); + printf("UND stack: p0x%08lx v0x%08lx\n", undstack.pv_pa, + undstack.pv_va); + printf("SVC stack: p0x%08lx v0x%08lx\n", kernelstack.pv_pa, + kernelstack.pv_va); +#endif + + /* + * XXX Defer this to later so that we can reclaim the memory + * XXX used by the RedBoot page tables. + */ + alloc_pages(msgbufphys, round_page(MSGBUFSIZE) / PAGE_SIZE); + + /* + * Ok we have allocated physical pages for the primary kernel + * page tables + */ + +#ifdef VERBOSE_INIT_ARM + printf("Creating L1 page table at 0x%08lx\n", kernel_l1pt.pv_pa); +#endif + + /* + * Now we start construction of the L1 page table + * We start by mapping the L2 page tables into the L1. + * This means that we can replace L1 mappings later on if necessary + */ + l1pagetable = kernel_l1pt.pv_pa; + + /* Map the L2 pages tables in the L1 page table */ + pmap_link_l2pt(l1pagetable, 0x00000000, + &kernel_pt_table[KERNEL_PT_SYS]); + + for (loop = 0; loop < KERNEL_PT_KERNEL_NUM; loop++) + pmap_link_l2pt(l1pagetable, KERNEL_BASE + loop * 0x00400000, + &kernel_pt_table[KERNEL_PT_KERNEL + loop]); + + for (loop = 0; loop < KERNEL_PT_VMDATA_NUM; loop++) + pmap_link_l2pt(l1pagetable, KERNEL_VM_BASE + loop * 0x00400000, + &kernel_pt_table[KERNEL_PT_VMDATA + loop]); + + /* update the top of the kernel VM */ + pmap_curmaxkvaddr = + KERNEL_VM_BASE + (KERNEL_PT_VMDATA_NUM * 0x00400000); + +#ifdef VERBOSE_INIT_ARM + printf("Mapping kernel\n"); +#endif + + /* Now we fill in the L2 pagetable for the kernel static code/data + * and the symbol table. */ + { + extern char etext[]; + size_t textsize = (u_int32_t) etext - KERNEL_TEXT_BASE; + size_t totalsize = esym - KERNEL_TEXT_BASE; + u_int logical; + + textsize = (textsize + PGOFSET) & ~PGOFSET; + totalsize = (totalsize + PGOFSET) & ~PGOFSET; + + logical = KERNEL_OFFSET; /* offset of kernel in RAM */ + + /* Update dump information */ + cpu_kcore_hdr.kernelbase = KERNEL_BASE; + cpu_kcore_hdr.kerneloffs = logical; + cpu_kcore_hdr.staticsize = totalsize; + + logical += pmap_map_chunk(l1pagetable, KERNEL_BASE + logical, + physical_start + logical, textsize, + VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); + pmap_map_chunk(l1pagetable, KERNEL_BASE + logical, + physical_start + logical, totalsize - textsize, + VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); + } + +#ifdef VERBOSE_INIT_ARM + printf("Constructing L2 page tables\n"); +#endif + + /* Map the stack pages */ + pmap_map_chunk(l1pagetable, irqstack.pv_va, irqstack.pv_pa, + IRQ_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); + pmap_map_chunk(l1pagetable, abtstack.pv_va, abtstack.pv_pa, + ABT_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); + pmap_map_chunk(l1pagetable, undstack.pv_va, undstack.pv_pa, + UND_STACK_SIZE * PAGE_SIZE, VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); + pmap_map_chunk(l1pagetable, kernelstack.pv_va, kernelstack.pv_pa, + UPAGES * PAGE_SIZE, VM_PROT_READ | VM_PROT_WRITE, PTE_CACHE); + + pmap_map_chunk(l1pagetable, kernel_l1pt.pv_va, kernel_l1pt.pv_pa, + L1_TABLE_SIZE, VM_PROT_READ | VM_PROT_WRITE, PTE_PAGETABLE); + + for (loop = 0; loop < NUM_KERNEL_PTS; ++loop) { + pmap_map_chunk(l1pagetable, kernel_pt_table[loop].pv_va, + kernel_pt_table[loop].pv_pa, L2_TABLE_SIZE, + VM_PROT_READ|VM_PROT_WRITE, PTE_PAGETABLE); + } + + /* Map the vector page. */ +#if 1 + /* MULTI-ICE requires that page 0 is NC/NB so that it can download the + * cache-clean code there. */ + pmap_map_entry(l1pagetable, vector_page, systempage.pv_pa, + VM_PROT_READ|VM_PROT_WRITE, PTE_NOCACHE); +#else + pmap_map_entry(l1pagetable, vector_page, systempage.pv_pa, + VM_PROT_READ|VM_PROT_WRITE, PTE_CACHE); +#endif + +#if 1 + /* + * map integrated peripherals at same address in l1pagetable + * so that we can continue to use console. + */ + pmap_devmap_bootstrap(l1pagetable, smdk2410_devmap); +#endif + + /* + * Now we have the real page tables in place so we can switch to them. + * Once this is done we will be running with the REAL kernel page + * tables. + */ + + /* + * Update the physical_freestart/physical_freeend/free_pages + * variables. + */ + { + physical_freestart = physical_start + + (((esym + PGOFSET) & ~PGOFSET) - KERNEL_BASE); + physical_freeend = physical_end; + free_pages = + (physical_freeend - physical_freestart) / PAGE_SIZE; + } + + /* be a client to all domains */ + cpu_domains(0x55555555); + /* Switch tables */ +#ifdef VERBOSE_INIT_ARM + printf("freestart = 0x%08lx - %08lx, free_pages = %d (0x%x)\n", + physical_freestart, physical_freeend, free_pages, free_pages); + printf("switching to new L1 page table @%#lx...", kernel_l1pt.pv_pa); +#endif + + /* set new intc register address so that splfoo() doesn't + touch illegal address. */ + s3c2xx0_intr_bootstrap(INTCTL_VBASE); + + + cpu_domains((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT); + setttb(kernel_l1pt.pv_pa); + cpu_tlb_flushID(); + cpu_domains(DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)); + + /* + * Moved from cpu_startup() as data_abort_handler() references + * this during uvm init + */ + proc0paddr = (struct user *)kernelstack.pv_va; + proc0.p_addr = proc0paddr; + + arm32_vector_init(ARM_VECTORS_LOW, ARM_VEC_ALL); + +#ifdef VERBOSE_INIT_ARM + printf("bootstrap done.\n"); +#endif + + + /* + * Pages were allocated during the secondary bootstrap for the + * stacks for different CPU modes. + * We must now set the r13 registers in the different CPU modes to + * point to these stacks. + * Since the ARM stacks use STMFD etc. we must set r13 to the top end + * of the stack memory. + */ +#ifdef VERBOSE_INIT_ARM + printf("init subsystems: stacks "); +#endif + + set_stackptr(PSR_IRQ32_MODE, + irqstack.pv_va + IRQ_STACK_SIZE * PAGE_SIZE); + set_stackptr(PSR_ABT32_MODE, + abtstack.pv_va + ABT_STACK_SIZE * PAGE_SIZE); + set_stackptr(PSR_UND32_MODE, + undstack.pv_va + UND_STACK_SIZE * PAGE_SIZE); + + /* + * Well we should set a data abort handler. + * Once things get going this will change as we will need a proper + * handler. + * Until then we will use a handler that just panics but tells us + * why. + * Initialisation of the vectors will just panic on a data abort. + * This just fills in a slightly better one. + */ +#ifdef VERBOSE_INIT_ARM + printf("vectors "); +#endif + data_abort_handler_address = (u_int)data_abort_handler; + prefetch_abort_handler_address = (u_int)prefetch_abort_handler; + undefined_handler_address = (u_int)undefinedinstruction_bounce; + + /* Initialise the undefined instruction handlers */ +#ifdef VERBOSE_INIT_ARM + printf("undefined "); +#endif + undefined_init(); + + /* Load memory into UVM. */ +#ifdef VERBOSE_INIT_ARM + printf("page "); +#endif + uvm_setpagesize(); /* initialize PAGE_SIZE-dependent variables */ + uvm_page_physload(atop(physical_freestart), atop(physical_freeend), + atop(physical_freestart), atop(physical_freeend), + VM_FREELIST_DEFAULT); + + /* Boot strap pmap telling it where the kernel page table is */ +#ifdef VERBOSE_INIT_ARM + printf("pmap "); +#endif + pmap_bootstrap((pd_entry_t *)kernel_l1pt.pv_va, KERNEL_VM_BASE, + KERNEL_VM_BASE + KERNEL_VM_SIZE); + + /* Update dump information */ + cpu_kcore_hdr.pmap_kernel_l1 = (u_int32_t)pmap_kernel()->pm_l1; + cpu_kcore_hdr.pmap_kernel_l2 = (u_int32_t)&(pmap_kernel()->pm_l2); + +#ifdef __HAVE_MEMORY_DISK__ + md_root_setconf(memory_disk, sizeof memory_disk); +#endif + +#ifdef IPKDB + /* Initialise ipkdb */ + ipkdb_init(); + if (boothowto & RB_KDB) + ipkdb_connect(0); +#endif + +#ifdef KGDB + if (boothowto & RB_KDB) { + kgdb_debug_init = 1; + kgdb_connect(1); + } +#endif + + /* + * Restore proper bus_space operation, now that pmap is initialized. + */ + s3c2xx0_bs_tag.bs_map = map_func_save; + +#ifdef DDB + db_machine_init(); + + /* Firmware doesn't load symbols. */ + ddb_init(); + + if (boothowto & RB_KDB) + Debugger(); +#endif + + /* We return the new stack pointer address */ + return(kernelstack.pv_va + USPACE_SVC_STACK_TOP); +} + +const char *console = "glass"; + +void +process_kernel_args(char *args) +{ + char *cp = args; + + if (cp == NULL || *(int *)cp != BOOT_STRING_MAGIC) { + boothowto = RB_AUTOBOOT; + return; + } + + /* Eat the cookie */ + *(int *)cp = 0; + cp += sizeof(int); + + boothowto = 0; + + /* Make a local copy of the bootargs */ + strncpy(bootargs, cp, MAX_BOOT_STRING - sizeof(int)); + + cp = bootargs; + boot_file = bootargs; + + /* Skip the kernel image filename */ + while (*cp != ' ' && *cp != 0) + ++cp; + + if (*cp != 0) + *cp++ = 0; + + while (*cp == ' ') + ++cp; + + boot_args = cp; + + printf("bootfile: %s\n", boot_file); + printf("bootargs: %s\n", boot_args); + + /* Setup pointer to boot flags */ + while (*cp != '-') + if (*cp++ == '\0') + return; + + for (;*++cp;) { + int fl; + + fl = 0; + switch(*cp) { + case 'a': + fl |= RB_ASKNAME; + break; + case 'c': + fl |= RB_CONFIG; + break; + case 'd': + fl |= RB_KDB; + break; + case 's': + fl |= RB_SINGLE; + break; + /* XXX undocumented console switching flags */ + case '0': + console = "ffuart"; + break; + case '1': + console = "btuart"; + break; + case '2': + console = "stuart"; + break; + default: + printf("unknown option `%c'\n", *cp); + break; + } + boothowto |= fl; + } +} + +void +consinit(void) +{ + static int consinit_done = 0; +#if defined(SSCOM0CONSOLE) || defined(SSCOM1CONSOLE) + bus_space_tag_t iot = &s3c2xx0_bs_tag; +#endif + int pclk; + +#if 0 + char *console = CONSDEVNAME; +#endif + + if (consinit_done != 0) + return; + + consinit_done = 1; + + s3c24x0_clock_freq2(CLKMAN_VBASE, NULL, NULL, &pclk); + +#if NSSCOM > 0 + if (0 == s3c2410_sscom_cnattach(iot, 0, comcnspeed, + pclk, comcnmode)) + return; +#if 0 + /* XXX - delete this block */ +#ifdef SSCOM1CONSOLE + if (0 == s3c2410_sscom_cnattach(iot, 1, comcnspeed, + pclk, comcnmode)) + return; +#endif +#endif /* delme */ +#endif /* NSSCOM */ + + consinit_done = 0; +} + +#ifdef KGDB +void +kgdb_port_init(void) +{ +#if (NCOM > 0) && defined(COM_PXA2X0) + paddr_t paddr; + u_int cken; + + if (strcmp(kgdb_devname, "ffuart") == 0) { + paddr = PXA2X0_FFUART_BASE; + cken = CKEN_FFUART; + } else if (strcmp(kgdb_devname, "btuart") == 0) { + paddr = PXA2X0_BTUART_BASE; + cken = CKEN_BTUART; + } else if (strcmp(kgdb_devname, "stuart") == 0) { + paddr = PXA2X0_STUART_BASE; + cken = CKEN_STUART; + irda_on(0); + } else + return; + + if (com_kgdb_attach_pxa2x0(&pxa2x0_a4x_bs_tag, paddr, + kgdb_rate, PXA2X0_COM_FREQ, COM_TYPE_PXA2x0, comkgdbmode) == 0) { + early_clkman(cken, 1); + } +#endif +} +#endif + +int glass_console = 0; + +void +board_startup(void) +{ + extern int lcd_cnattach(void (*)(u_int, int)); +#if NWSDISPLAY > 0 + extern bus_addr_t comconsaddr; +#endif + +#if NWSDISPLAY > 0 + /* + * Try to attach the display console now that VM services + * are available. + */ + + if ((cputype & ~CPU_ID_XSCALE_COREREV_MASK) == CPU_ID_PXA27X) { + if (strcmp(console, "glass") == 0) { + printf("attempting to switch console to lcd screen\n"); + glass_console = 1; + } + if (glass_console == 1 && lcd_cnattach(early_clkman) == 0) { + /* + * Kill the existing serial console. + * XXX need to bus_space_unmap resources and disable + * clocks... + */ + comconsaddr = 0; + + /* + * Display the copyright notice again on the new console + */ + extern const char copyright[]; + printf("%s\n", copyright); + } + } +#endif + + if (boothowto & RB_CONFIG) { +#ifdef BOOT_CONFIG + user_config(); +#else + printf("kernel does not support -c; continuing..\n"); +#endif + } +} + +static struct arm32_dma_range smdk2410_dma_ranges[1]; + +bus_dma_tag_t +s3c2xx0_bus_dma_init(struct arm32_bus_dma_tag *dma_tag_template) +{ + extern paddr_t physical_start, physical_end; + struct arm32_bus_dma_tag *dmat; + + smdk2410_dma_ranges[0].dr_sysbase = physical_start; + smdk2410_dma_ranges[0].dr_busbase = physical_start; + smdk2410_dma_ranges[0].dr_len = physical_end - physical_start; + +#if 1 + dmat = dma_tag_template; +#else + dmat = malloc(sizeof *dmat, M_DEVBUF, M_NOWAIT); + if (dmat == NULL) + return NULL; + *dmat = *dma_tag_template; +#endif + + dmat->_ranges = smdk2410_dma_ranges; + dmat->_nranges = 1; + + return dmat; +} + diff --git a/sys/arch/moko/moko/moko_start.S b/sys/arch/moko/moko/moko_start.S new file mode 100644 index 00000000000..b3d6282068b --- /dev/null +++ b/sys/arch/moko/moko/moko_start.S @@ -0,0 +1,174 @@ +/* $OpenBSD: moko_start.S,v 1.1 2008/11/26 14:47:50 drahn Exp $ */ + +/* + * Copyright (c) 2002, 2003 Genetec Corporation. All rights reserved. + * Written by Hiroyuki Bessho for Genetec Corporation. + * + * 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 Genetec Corporation may not be used to endorse or + * promote products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``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 GENETEC CORPORATION + * 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 <machine/asm.h> +#include <arm/armreg.h> +#include <arm/pte.h> +#include <arm/pmap.h> /* for PMAP_DOMAIN_KERNEL */ + +#ifndef SDRAM_START +#define SDRAM_START 0x30000000 +#endif + +/* + * CPWAIT -- Canonical method to wait for CP15 update. + * NOTE: Clobbers the specified temp reg. + * copied from arm/arm/cpufunc_asm_xscale.S + * XXX: better be in a common header file. + */ +#define CPWAIT_BRANCH \ + sub pc, pc, #4 + +#define CPWAIT(tmp) \ + mrc p15, 0, tmp, c2, c0, 0 /* arbitrary read of CP15 */ ;\ + mov tmp, tmp /* wait for it to complete */ ;\ + CPWAIT_BRANCH /* branch to next insn */ + +/* + * Kernel start routine for DBPXA250 (Lubbock) + * this code is excuted at the very first after the kernel is loaded + * by RedBoot. + */ + .text + + .global _C_LABEL(moko_start) +_C_LABEL(moko_start): + /* Are we running on ROM ? */ + cmp pc, #0x06000000 + bhi moko_start_ram + + /* move me to RAM + * XXX: we can use memcpy if it is PIC + */ + ldr r1, Lcopy_size + adr r0, _C_LABEL(moko_start) + add r1, r1, #3 + mov r1, r1, LSR #2 + mov r2, #SDRAM_START + add r2, r2, #0x00200000 + mov r4, r2 + +5: ldr r3,[r0],#4 + str r3,[r2],#4 + subs r1,r1,#1 + bhi 5b + + cmp pc, r5 + /* Jump to RAM */ + ldr r0, Lstart_off + + blo 1f + /* if we were running out of virtual mapped space, disable mmu */ + mov r2, #0 + mov r1, #(CPU_CONTROL_32BP_ENABLE | CPU_CONTROL_32BD_ENABLE) + mcr 15, 0, r1, c1, c0, 0 + mcrne 15, 0, r2, c8, c7, 0 /* nail I+D TLB on ARMv4 and greater */ + +1: + add pc, r4, r0 + +Lcopy_size: .word _edata-_C_LABEL(moko_start) +Lstart_off: .word moko_start_ram-_C_LABEL(moko_start) + +moko_start_ram: + /* + * Kernel is loaded in SDRAM (0xa0200000..), and is expected to run + * in VA 0xc0200000.. + */ + + mrc p15, 0, r0, c2, c0, 0 /* get ttb prepared by redboot */ + adr r4, mmu_init_table2 + +#define BUILD_STARTUP_PAGETABLE +#ifdef BUILD_STARTUP_PAGETABLE + mrc p15, 0, r2, c1, c0, 0 + mov r2, #0 + tst r2, #CPU_CONTROL_MMU_ENABLE /* we already have a page table? */ + bne 3f + + /* build page table from scratch */ + ldr r0, Lstartup_pagetable + adr r4, mmu_init_table + b 3f + +2: + str r3, [r0, r2] + add r2, r2, #4 + add r3, r3, #(L1_S_SIZE) + adds r1, r1, #-1 + bhi 2b +3: + ldmia r4!, {r1,r2,r3} /* # of sections, PA|attr, VA */ + cmp r1, #0 + bne 2b +#endif + + mcr p15, 0, r0, c2, c0, 0 /* Set TTB */ + mcr p15, 0, r0, c8, c7, 0 /* Flush TLB */ + + /* Set the Domain Access register. Very important! */ + mov r0, #((DOMAIN_CLIENT << (PMAP_DOMAIN_KERNEL*2)) | DOMAIN_CLIENT) + mcr p15, 0, r0, c3, c0, 0 + + /* Enable MMU */ + mrc p15, 0, r0, c1, c0, 0 + orr r0, r0, #CPU_CONTROL_MMU_ENABLE + mcr p15, 0, r0, c1, c0, 0 + CPWAIT(r0) + + /* Jump to kernel code in TRUE VA */ + adr r0, Lstart + ldr pc, [r0] + +Lstart: + .word start + +#define MMU_INIT(va,pa,n_sec,attr) \ + .word n_sec ; \ + .word 4*((va)>>L1_S_SHIFT) ; \ + .word (pa)|(attr) ; + +#ifdef BUILD_STARTUP_PAGETABLE +#ifndef STARTUP_PAGETABLE_ADDR +#define STARTUP_PAGETABLE_ADDR SDRAM_START+0x4000 +#endif +Lstartup_pagetable: .word STARTUP_PAGETABLE_ADDR +mmu_init_table: + /* fill all table VA==PA */ + MMU_INIT(0x00000000, 0x00000000, 1<<(32-L1_S_SHIFT), L1_TYPE_S|L1_S_AP(AP_KRW)) + /* map SDRAM VA==PA, WT cacheable */ + MMU_INIT(SDRAM_START, SDRAM_START, 64, L1_TYPE_S|L1_S_C|L1_S_AP(AP_KRW)) +#endif +mmu_init_table2: + /* map VA 0xc0000000..0xc3ffffff to PA 0xa0000000..0xa3ffffff */ + MMU_INIT(0xc0000000, SDRAM_START, 64, L1_TYPE_S|L1_S_C|L1_S_AP(AP_KRW)) + + .word 0 /* end of table */ |