diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-25 04:04:44 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-10 07:18:05 -0500 |
commit | 9346dba55672a6f04b7bfd1faa081ff149995a3f (patch) | |
tree | 78720838d17b73ab0a535fa907df9b805f5a7442 /arch/blackfin/mach-bf533 | |
parent | 6c8e75a06c8ee32c68ce90afa4a0fe093327b0e4 (diff) |
Blackfin: standardize DMAC traffic control MMRs & MDMA MMRs
Use the same naming convention for DMA traffic MMRs (most were legacy
anyways) so we can avoid useless ifdef trees.
Same goes for MDMA names -- this actually allows us to undo a bunch of
ifdef redirects that existed for this purpose alone.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf533')
-rw-r--r-- | arch/blackfin/mach-bf533/include/mach/cdefBF532.h | 14 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/include/mach/defBF532.h | 8 |
2 files changed, 6 insertions, 16 deletions
diff --git a/arch/blackfin/mach-bf533/include/mach/cdefBF532.h b/arch/blackfin/mach-bf533/include/mach/cdefBF532.h index 401e524f5321..e14955073b5d 100644 --- a/arch/blackfin/mach-bf533/include/mach/cdefBF532.h +++ b/arch/blackfin/mach-bf533/include/mach/cdefBF532.h | |||
@@ -66,16 +66,10 @@ | |||
66 | #define bfin_write_RTC_PREN(val) bfin_write16(RTC_PREN,val) | 66 | #define bfin_write_RTC_PREN(val) bfin_write16(RTC_PREN,val) |
67 | 67 | ||
68 | /* DMA Traffic controls */ | 68 | /* DMA Traffic controls */ |
69 | #define bfin_read_DMA_TCPER() bfin_read16(DMA_TCPER) | 69 | #define bfin_read_DMAC_TC_PER() bfin_read16(DMAC_TC_PER) |
70 | #define bfin_write_DMA_TCPER(val) bfin_write16(DMA_TCPER,val) | 70 | #define bfin_write_DMAC_TC_PER(val) bfin_write16(DMAC_TC_PER,val) |
71 | #define bfin_read_DMA_TCCNT() bfin_read16(DMA_TCCNT) | 71 | #define bfin_read_DMAC_TC_CNT() bfin_read16(DMAC_TC_CNT) |
72 | #define bfin_write_DMA_TCCNT(val) bfin_write16(DMA_TCCNT,val) | 72 | #define bfin_write_DMAC_TC_CNT(val) bfin_write16(DMAC_TC_CNT,val) |
73 | |||
74 | /* Alternate deprecated register names (below) provided for backwards code compatibility */ | ||
75 | #define bfin_read_DMA_TC_PER() bfin_read16(DMA_TC_PER) | ||
76 | #define bfin_write_DMA_TC_PER(val) bfin_write16(DMA_TC_PER,val) | ||
77 | #define bfin_read_DMA_TC_CNT() bfin_read16(DMA_TC_CNT) | ||
78 | #define bfin_write_DMA_TC_CNT(val) bfin_write16(DMA_TC_CNT,val) | ||
79 | 73 | ||
80 | /* General Purpose IO (0xFFC0 2400-0xFFC0 27FF) */ | 74 | /* General Purpose IO (0xFFC0 2400-0xFFC0 27FF) */ |
81 | #define bfin_read_FIO_DIR() bfin_read16(FIO_DIR) | 75 | #define bfin_read_FIO_DIR() bfin_read16(FIO_DIR) |
diff --git a/arch/blackfin/mach-bf533/include/mach/defBF532.h b/arch/blackfin/mach-bf533/include/mach/defBF532.h index 8e8099b567f7..44415e509d35 100644 --- a/arch/blackfin/mach-bf533/include/mach/defBF532.h +++ b/arch/blackfin/mach-bf533/include/mach/defBF532.h | |||
@@ -182,12 +182,8 @@ | |||
182 | #define EBIU_SDSTAT 0xFFC00A1C /* SDRAM Status Register */ | 182 | #define EBIU_SDSTAT 0xFFC00A1C /* SDRAM Status Register */ |
183 | 183 | ||
184 | /* DMA Traffic controls */ | 184 | /* DMA Traffic controls */ |
185 | #define DMA_TC_PER 0xFFC00B0C /* Traffic Control Periods Register */ | 185 | #define DMAC_TC_PER 0xFFC00B0C /* Traffic Control Periods Register */ |
186 | #define DMA_TC_CNT 0xFFC00B10 /* Traffic Control Current Counts Register */ | 186 | #define DMAC_TC_CNT 0xFFC00B10 /* Traffic Control Current Counts Register */ |
187 | |||
188 | /* Alternate deprecated register names (below) provided for backwards code compatibility */ | ||
189 | #define DMA_TCPER 0xFFC00B0C /* Traffic Control Periods Register */ | ||
190 | #define DMA_TCCNT 0xFFC00B10 /* Traffic Control Current Counts Register */ | ||
191 | 187 | ||
192 | /* DMA Controller (0xFFC00C00 - 0xFFC00FFF) */ | 188 | /* DMA Controller (0xFFC00C00 - 0xFFC00FFF) */ |
193 | #define DMA0_CONFIG 0xFFC00C08 /* DMA Channel 0 Configuration Register */ | 189 | #define DMA0_CONFIG 0xFFC00C08 /* DMA Channel 0 Configuration Register */ |