diff options
author | Stefan Roese <sr@denx.de> | 2012-08-16 17:53:18 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2012-12-05 17:30:51 +0100 |
commit | 083f2e08d2265a096a1ab52d43b4abb8e069977d (patch) | |
tree | fad17ff01eed2e8a5d4d0f3208eaf3f837708ac3 /arch/powerpc/include/asm | |
parent | d3aa8b8be2204e709fe307787dfbd8234316b41b (diff) | |
download | u-boot-imx-083f2e08d2265a096a1ab52d43b4abb8e069977d.zip u-boot-imx-083f2e08d2265a096a1ab52d43b4abb8e069977d.tar.gz u-boot-imx-083f2e08d2265a096a1ab52d43b4abb8e069977d.tar.bz2 |
mpc5200: Add SPL support
This patch adds SPL booting support (NOR flash) for the
MPC5200 platforms.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch/powerpc/include/asm')
-rw-r--r-- | arch/powerpc/include/asm/spl.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/spl.h b/arch/powerpc/include/asm/spl.h new file mode 100644 index 0000000..f43bc23 --- /dev/null +++ b/arch/powerpc/include/asm/spl.h @@ -0,0 +1,31 @@ +/* + * (C) Copyright 2012 + * Texas Instruments, <www.ti.com> + * + * 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 as + * published by the Free Software Foundation; either version 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ +#ifndef _ASM_SPL_H_ +#define _ASM_SPL_H_ + +#define BOOT_DEVICE_NOR 1 + +/* Linker symbols */ +extern char __bss_start[], __bss_end__[]; + +#endif |