/* * Startup Code for MIPS CPU * * Copyright (C) 2012 Antony Pavlov * * This file is part of barebox. * See file CREDITS for list of people who contributed to this project. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * 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. * */ #include #include #include #include #include #ifdef CONFIG_CPU_LITTLE_ENDIAN #define GT_CPU_TO_LE32(x) (x) #elif defined CONFIG_CPU_BIG_ENDIAN #define GT_CPU_TO_LE32(x) ( \ (((x) & 0x000000ff) << 24) | \ (((x) & 0x0000ff00) << 8) | \ (((x) & 0x00ff0000) >> 8) | \ (((x) & 0xff000000) >> 24)) #else #error "could not determine byte order" #endif #define GT_LD(x) (GT_CPU_TO_LE32(((x) >> 21) & 0x7fff)) #define GT_HD(x) (GT_CPU_TO_LE32(((x) >> 21) & 0x7f)) .macro board_pbl_start .set push .set noreorder b __start nop /* On MIPS Technologies boards 0x1fc00010 address is reserved for BoardID */ .org 0x10 .word 0xffffffff .word 0xffffffff __start: mips_disable_interrupts /* cpu specific setup ... */ /* ... absent */ /* * Load BAR registers of GT64120 as done by YAMON * * based on write_bootloader() in qemu.git/hw/mips/mips_malta.c * see GT64120 manual and qemu.git/hw/mips/gt64xxx_pci.c for details */ /* move GT64120 registers to 0x1be00000 */ li t1, KSEG1ADDR(GT_DEF_BASE) li t0, GT_LD(MIPS_GT_BASE) sw t0, GT_ISD_OFS(t1) /* * setup MEM-to-PCI0 mapping */ li t1, KSEG1ADDR(MIPS_GT_BASE) /* setup PCI0 io window */ li t0, GT_LD(0x18000000) sw t0, GT_PCI0IOLD_OFS(t1) li t0, GT_HD(0x181fffff) sw t0, GT_PCI0IOHD_OFS(t1) /* setup PCI0 mem windows */ li t0, GT_LD(0x10000000) sw t0, GT_PCI0M0LD_OFS(t1) li t0, GT_HD(0x17efffff) sw t0, GT_PCI0M0HD_OFS(t1) li t0, GT_LD(0x18200000) sw t0, GT_PCI0M1LD_OFS(t1) li t0, GT_LD(0x1bdfffff) sw t0, GT_PCI0M1HD_OFS(t1) mips_nmon copy_to_link_location pbl_start .set pop .endm