Skip to content
Snippets Groups Projects
Commit 9a0e21a3 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Had to move the RTC area for ATC board to upper addresses

(0xf5000000, to be specific). The reason is that the RTC first gets
accessed before MMU is initialized and, consequently, it needs to be
placed at physical addresses which are later mapped to the same
virtual addresses (like 0xf5000000 physical is mapped to 0xf5000000
virtual).
parent 592c5cab
No related branches found
No related tags found
No related merge requests found
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
#define CONFIG_RTC_DS12887 #define CONFIG_RTC_DS12887
#define RTC_BASE_ADDR 0x02800000 #define RTC_BASE_ADDR 0xF5000000
#define RTC_PORT_ADDR RTC_BASE_ADDR + 0x800 #define RTC_PORT_ADDR RTC_BASE_ADDR + 0x800
#define RTC_PORT_DATA RTC_BASE_ADDR + 0x808 #define RTC_PORT_DATA RTC_BASE_ADDR + 0x808
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
* HRCW_DPPCxx requires you to also change CFG_SIUMCR. * HRCW_DPPCxx requires you to also change CFG_SIUMCR.
*/ */
#define CFG_HRCW_MASTER (HRCW_CIP | HRCW_ISB100 | HRCW_BMS | \ #define CFG_HRCW_MASTER (HRCW_CIP | HRCW_ISB100 | HRCW_BMS | \
HRCW_BPS10 | HRCW_DPPC10 |\ HRCW_BPS10 |\
HRCW_APPC10) HRCW_APPC10)
/* no slaves so just fill with zeros */ /* no slaves so just fill with zeros */
...@@ -321,7 +321,7 @@ ...@@ -321,7 +321,7 @@
* SIUMCR - SIU Module Configuration 4-31 * SIUMCR - SIU Module Configuration 4-31
*----------------------------------------------------------------------- *-----------------------------------------------------------------------
*/ */
#define CFG_SIUMCR (SIUMCR_BBD|SIUMCR_DPPC10|SIUMCR_APPC10|\ #define CFG_SIUMCR (SIUMCR_BBD|SIUMCR_APPC10|\
SIUMCR_CS10PC00|SIUMCR_BCTLC10) SIUMCR_CS10PC00|SIUMCR_BCTLC10)
/*----------------------------------------------------------------------- /*-----------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment