Skip to content

Commit d3c511a

Browse files
committed
powerpc/cpm: Remove !CONFIG_PPC_CPM_NEW_BINDING code
Now that arch/ppc is gone we always define CONFIG_PPC_CPM_NEW_BINDING so we can remove all the code associated with !CONFIG_PPC_CPM_NEW_BINDING. Signed-off-by: Kumar Gala <[email protected]>
1 parent 0b2a2e5 commit d3c511a

File tree

2 files changed

+0
-46
lines changed

2 files changed

+0
-46
lines changed

include/asm-powerpc/cpm1.h

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -42,35 +42,15 @@
4242

4343
#define mk_cr_cmd(CH, CMD) ((CMD << 8) | (CH << 4))
4444

45-
#ifndef CONFIG_PPC_CPM_NEW_BINDING
46-
/* The dual ported RAM is multi-functional. Some areas can be (and are
47-
* being) used for microcode. There is an area that can only be used
48-
* as data ram for buffer descriptors, which is all we use right now.
49-
* Currently the first 512 and last 256 bytes are used for microcode.
50-
*/
51-
#define CPM_DATAONLY_BASE ((uint)0x0800)
52-
#define CPM_DATAONLY_SIZE ((uint)0x0700)
53-
#define CPM_DP_NOSPACE ((uint)0x7fffffff)
54-
#endif
55-
5645
/* Export the base address of the communication processor registers
5746
* and dual port ram.
5847
*/
5948
extern cpm8xx_t __iomem *cpmp; /* Pointer to comm processor */
6049

61-
#ifdef CONFIG_PPC_CPM_NEW_BINDING
6250
#define cpm_dpalloc cpm_muram_alloc
6351
#define cpm_dpfree cpm_muram_free
6452
#define cpm_dpram_addr cpm_muram_addr
6553
#define cpm_dpram_phys cpm_muram_dma
66-
#else
67-
extern unsigned long cpm_dpalloc(uint size, uint align);
68-
extern int cpm_dpfree(unsigned long offset);
69-
extern unsigned long cpm_dpalloc_fixed(unsigned long offset, uint size, uint align);
70-
extern void cpm_dpdump(void);
71-
extern void *cpm_dpram_addr(unsigned long offset);
72-
extern uint cpm_dpram_phys(u8 *addr);
73-
#endif
7454

7555
extern void cpm_setbrg(uint brg, uint rate);
7656

include/asm-powerpc/cpm2.h

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,6 @@
7878
#define mk_cr_cmd(PG, SBC, MCN, OP) \
7979
((PG << 26) | (SBC << 21) | (MCN << 6) | OP)
8080

81-
#ifndef CONFIG_PPC_CPM_NEW_BINDING
82-
/* Dual Port RAM addresses. The first 16K is available for almost
83-
* any CPM use, so we put the BDs there. The first 128 bytes are
84-
* used for SMC1 and SMC2 parameter RAM, so we start allocating
85-
* BDs above that. All of this must change when we start
86-
* downloading RAM microcode.
87-
*/
88-
#define CPM_DATAONLY_BASE ((uint)128)
89-
#define CPM_DP_NOSPACE ((uint)0x7fffffff)
90-
#if defined(CONFIG_8272) || defined(CONFIG_MPC8555)
91-
#define CPM_DATAONLY_SIZE ((uint)(8 * 1024) - CPM_DATAONLY_BASE)
92-
#define CPM_FCC_SPECIAL_BASE ((uint)0x00009000)
93-
#else
94-
#define CPM_DATAONLY_SIZE ((uint)(16 * 1024) - CPM_DATAONLY_BASE)
95-
#define CPM_FCC_SPECIAL_BASE ((uint)0x0000b000)
96-
#endif
97-
#endif
98-
9981
/* The number of pages of host memory we allocate for CPM. This is
10082
* done early in kernel initialization to get physically contiguous
10183
* pages.
@@ -107,17 +89,9 @@
10789
*/
10890
extern cpm_cpm2_t __iomem *cpmp; /* Pointer to comm processor */
10991

110-
#ifdef CONFIG_PPC_CPM_NEW_BINDING
11192
#define cpm_dpalloc cpm_muram_alloc
11293
#define cpm_dpfree cpm_muram_free
11394
#define cpm_dpram_addr cpm_muram_addr
114-
#else
115-
extern unsigned long cpm_dpalloc(uint size, uint align);
116-
extern int cpm_dpfree(unsigned long offset);
117-
extern unsigned long cpm_dpalloc_fixed(unsigned long offset, uint size, uint align);
118-
extern void cpm_dpdump(void);
119-
extern void *cpm_dpram_addr(unsigned long offset);
120-
#endif
12195

12296
extern void cpm_setbrg(uint brg, uint rate);
12397
extern void cpm2_fastbrg(uint brg, uint rate, int div16);

0 commit comments

Comments
 (0)