# Iris: micro-kernel for a capability-based operating system. # mips/nanonote/Makefile.arch: nanonote-specific parts of the build rules # Copyright 2009 Bas Wijnen # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . start_load = 0x80600000 load = 0x80000000 # Uncomment one of these to select the boot method for the image. #UDC_BOOT = yes #SD_BOOT = yes UNBRICK = yes arch_iris_sources = mips/interrupts.cc mips/arch.cc boot_sources = mips/init.cc mips/nanonote/board.cc arch_headers = mips/arch.hh mips/nanonote/jz4740.hh mips/nanonote/board.hh mips/nand.hh udc_boot_programs = udc sd_boot_programs = sd+mmc partition fat unbrick_boot_programs = nand usb-mass-storage standard_boot_programs = bootinit programs = init gpio lcd bsquare ball buzzer metronome elfrun alarm rtc gui test boot booter $(udc_boot_programs) $(sd_boot_programs) $(unbrick_boot_programs) $(standard_boot_programs) ARCH_CPPFLAGS = -I. -Imips -Imips/nanonote -Wa,-mips32 -DNANONOTE -DUSE_SERIAL CROSS = mipsel-linux-gnu- OBJDUMP = $(CROSS)objdump junk = mdebug.abi32 reginfo comment pdr OBJCOPYFLAGS = $(addprefix --remove-section=.,$(junk)) ifneq ($(UDC_BOOT),) boot_threads = $(standard_boot_programs) $(udc_boot_programs) ARCH_CXXFLAGS = -DNUM_THREADS=2 BOOT_CPPFLAGS = -DUDCBOOT all: mips/nanonote/nand-boot.raw test mips/start.o: TARGET = else ifneq ($(SD_BOOT),) boot_threads = $(standard_boot_programs) $(sd_boot_programs) ARCH_CXXFLAGS = -DNUM_THREADS=4 BOOT_CPPFLAGS = -DSDBOOT all: mips/nanonote/nand-boot.raw iris-sd.tar mips/start.o: TARGET = -DWRAPPED iris-sd.tar: $(addprefix fs/,$(addsuffix .elf,$(programs))) mips/start.raw.gz fs/init.config mkimage -A mips -T kernel -a $(start_load) -e $(shell /bin/sh -c '$(OBJDUMP) -t mips/start.elf | grep __start$$ | cut -b1-8') -n Iris -d mips/start.raw.gz fs/uimage | sed -e 's/:/;/g' cd fs && tar cvf ../$@ uimage init.config $(addsuffix .elf,$(programs)) --dereference else ifneq ($(UNBRICK),) boot_threads = $(standard_boot_programs) $(unbrick_boot_programs) ARCH_CXXFLAGS = -DNUM_THREADS=3 BOOT_CPPFLAGS = -DUNBRICK all: mips/nanonote/nand-boot.raw iris.raw unbrick mips/start.o: TARGET = unbrick: mips/nanonote/unbrick.cc g++ -Wall -Wextra -Werror `pkg-config --cflags --libs shevek` -lusb $< -o $@ else error Please define your boot method. endif endif endif iris.elf: LDFLAGS = --omagic -Ttext $(load) mips/start.elf: LDFLAGS = --omagic -Ttext $(start_load) mips/nanonote/nand-boot.elf: LDFLAGS = --omagic -Ttext 0x80000000 mips/nanonote/nand-boot.o: mips/nand.hh source/nand.o: mips/nand.hh mips/nanonote/nand-boot.raw iris-sd.raw mips/start.o:mips/start.S Makefile Makefile.arch iris.raw $(CC) $(CPPFLAGS) $(TARGET) -DSTART=0x$(shell /bin/sh -c '$(OBJDUMP) -t iris.elf | grep __start$$ | cut -b1-8') -c $< -o $@ test: mips/start.raw mips/start.elf mips/nanonote/server/usb-server mips/nanonote/sdram-setup.raw $(addsuffix .elf,$(addprefix fs/,$(programs))) fs/init.config echo "reboot $(start_load) 0x$(shell /bin/sh -c '$(OBJDUMP) -t mips/start.elf | grep __start$$ | cut -b1-8') $<" | nc localhost 5050 mips/nanonote/server/usb-server: mips/nanonote/server/usb-server.ccp mips/nanonote/server/Makefile.am mips/nanonote/server/configure.ac devices.hh $(MAKE) -C mips/nanonote/server echo "shutdown" | nc localhost 5050 sleep 1 %.elf: %.o $(LD) $(LDFLAGS) -o $@ $< %.raw: %.elf $(OBJCOPY) -S $(OBJCOPYFLAGS) -Obinary $< $@ %.raw.gz: %.raw gzip < $< > $@ nanonote-boot: mips/nanonote/nanonote-boot.cc mips/nanonote/sdram-setup.raw g++ `pkg-config --cflags --libs shevek` $< -o $@ -D'STAGE1="$<"' -lusb mips/nanonote/sdram-setup.elf: mips/nanonote/sdram-setup.ld mips/nanonote/sdram-setup.elf: LDFLAGS = --omagic -T mips/nanonote/sdram-setup.ld mips/nanonote/threadlist.o: $(addprefix fs/,$(addsuffix .elf,$(boot_threads))) mips/boot.o: TARGET_FLAGS = -DMEMORY_SIZE="32 << 20" mips/init.o: TARGET_FLAGS = -I/usr/include source/bootinit.o: TARGET_FLAGS = -I/usr/include source/elfrun.o: TARGET_FLAGS = -I/usr/include source/gpio.ccp: source/nanonote-gpio.ccp ln -s $(subst source/,,$<) $@ $(addprefix fs/,$(addsuffix .elf,$(boot_threads))): TARGET_FLAGS = -I. $(addprefix fs/,$(addsuffix .elf,$(boot_threads))): LDFLAGS = -EL $(addprefix fs/,$(addsuffix .elf,$(programs))): LDFLAGS = -EL source/lcd.o: source/charset.data source/charset.data: source/charset $< > $@ %.o:%.S Makefile Makefile.arch mips/arch.hh $(CC) $(CPPFLAGS) $(BOOT_CPPFLAGS) $(TARGET_FLAGS) -DKERNEL_STACK_SIZE=0x1000 -c $< -o $@ # entry.o must be the first file. threadlist.o must be the first of the init objects (which can be freed after loading). iris.elf: mips/entry.o $(subst .cc,.o,$(iris_sources)) mips/nanonote/threadlist.o mips/boot.o $(subst .cc,.o,$(boot_sources)) $(LD) $(LDFLAGS) $^ -o $@ mips/start.elf: mips/start.o $(LD) $(LDFLAGS) $^ -o $@ server: while mips/nanonote/server/usb-server ; do : ; done servers: while : ; do $(MAKE) server ; done setup: x-terminal-emulator -e make debug & x-terminal-emulator -e make servers & ARCH_CLEAN_FILES = $(boot_sources) $(addsuffix .elf,$(boot_threads)) $(arch_headers) devices.hh keys.hh mips/*.o mips/nanonote/*.o source/charset.data iris.elf iris.raw mips/nanonote/sdram-setup.elf mips/nanonote/sdram-setup.raw mips/start.elf mips/start.raw .PRECIOUS: mips/arch.hh mips/nanonote/jz4740.hh mips/nanonote/board.hh .PHONY: test all monitor server servers setup