Commit 85c2737a authored by Mike Frysinger's avatar Mike Frysinger

Blackfin: dpmc: bind to MMR names and not CPUs

Have the code work off of MMR names rather than CPU defines so there is
less code to tweak in the future with new parts.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 0a7e5413
...@@ -238,18 +238,17 @@ ENTRY(_unset_dram_srfs) ...@@ -238,18 +238,17 @@ ENTRY(_unset_dram_srfs)
ENDPROC(_unset_dram_srfs) ENDPROC(_unset_dram_srfs)
ENTRY(_set_sic_iwr) ENTRY(_set_sic_iwr)
#if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) || \ #ifdef SIC_IWR0
defined(CONFIG_BF538) || defined(CONFIG_BF539) || defined(CONFIG_BF51x)
P0.H = hi(SIC_IWR0); P0.H = hi(SIC_IWR0);
P0.L = lo(SIC_IWR0); P0.L = lo(SIC_IWR0);
P1.H = hi(SIC_IWR1); P1.H = hi(SIC_IWR1);
P1.L = lo(SIC_IWR1); P1.L = lo(SIC_IWR1);
[P1] = R1; [P1] = R1;
#if defined(CONFIG_BF54x) # ifdef SIC_IWR2
P1.H = hi(SIC_IWR2); P1.H = hi(SIC_IWR2);
P1.L = lo(SIC_IWR2); P1.L = lo(SIC_IWR2);
[P1] = R2; [P1] = R2;
#endif # endif
#else #else
P0.H = hi(SIC_IWR); P0.H = hi(SIC_IWR);
P0.L = lo(SIC_IWR); P0.L = lo(SIC_IWR);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment