diff options
| author | Michael Durrant <mdurrant@arcturusnetworks.com> | 2010-01-20 19:33:02 -0600 | 
|---|---|---|
| committer | TsiChung Liew <tsicliew@gmail.com> | 2010-03-24 11:08:48 -0500 | 
| commit | dfc2b7697dc07862da804c1be084f96301884bc7 (patch) | |
| tree | 5f96c01ce8bc40096bd62695596b571529ac80da /cpu/mcf52x2/cpu_init.c | |
| parent | 89083346d0627a5e6e271e61bd34ab5121f9462b (diff) | |
| download | olio-uboot-2014.01-dfc2b7697dc07862da804c1be084f96301884bc7.tar.xz olio-uboot-2014.01-dfc2b7697dc07862da804c1be084f96301884bc7.zip | |
Adding EP2500 MCF5282 board [PATCH]
Mercury-EP2500.patch
   - added Mercury's EP2500 board uses the mcf5282 processor
CREDITS.patch
Signed-off-by: David Wu <davidwu@arcturusnetworks.com>
Signed-off-by: Michael Durrant <mdurrant@arcturusnetworks.com>
Diffstat (limited to 'cpu/mcf52x2/cpu_init.c')
| -rw-r--r-- | cpu/mcf52x2/cpu_init.c | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/cpu/mcf52x2/cpu_init.c b/cpu/mcf52x2/cpu_init.c index 7cea6558f..5b06930df 100644 --- a/cpu/mcf52x2/cpu_init.c +++ b/cpu/mcf52x2/cpu_init.c @@ -5,6 +5,8 @@   * MCF5282 additionals   * (C) Copyright 2005   * BuS Elektronik GmbH & Co. KG <esw@bus-elektronik.de> + * (c) Copyright 2010 + * Arcturus Networks Inc. <www.arcturusnetworks.com>   *   * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.   * TsiChung Liew (Tsi-Chung.Liew@freescale.com) @@ -582,6 +584,12 @@ void cpu_init_f(void)  #ifdef CONFIG_SYS_PTCPAR  	MCFGPIO_PTCPAR = CONFIG_SYS_PTCPAR;  #endif +#if defined(CONFIG_SYS_PORTTC) +	MCFGPIO_PORTTC = CONFIG_SYS_PORTTC; +#endif +#if defined(CONFIG_SYS_DDRTC) +	MCFGPIO_DDRTC  = CONFIG_SYS_DDRTC; +#endif  #ifdef CONFIG_SYS_PTDPAR  	MCFGPIO_PTDPAR = CONFIG_SYS_PTDPAR;  #endif @@ -589,6 +597,9 @@ void cpu_init_f(void)  	MCFGPIO_PUAPAR = CONFIG_SYS_PUAPAR;  #endif +#if defined(CONFIG_SYS_DDRD) +	MCFGPIO_DDRD = CONFIG_SYS_DDRD; +#endif  #ifdef CONFIG_SYS_DDRUA  	MCFGPIO_DDRUA = CONFIG_SYS_DDRUA;  #endif |