2 * Common CPLB definitions for CPLB init
4 * Copyright 2006-2008 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #ifndef __ASM_CPLBINIT_H__
10 #define __ASM_CPLBINIT_H__
12 #include <asm/blackfin.h>
14 #include <linux/threads.h>
16 #ifdef CONFIG_CPLB_SWITCH_TAB_L1
17 # define PDT_ATTR __attribute__((l1_data))
23 unsigned long data
, addr
;
26 struct cplb_boundary
{
27 unsigned long eaddr
; /* End of this region. */
28 unsigned long data
; /* CPLB data value. */
31 extern struct cplb_boundary dcplb_bounds
[];
32 extern struct cplb_boundary icplb_bounds
[];
33 extern int dcplb_nr_bounds
, icplb_nr_bounds
;
35 extern struct cplb_entry dcplb_tbl
[NR_CPUS
][MAX_CPLBS
];
36 extern struct cplb_entry icplb_tbl
[NR_CPUS
][MAX_CPLBS
];
37 extern int first_switched_icplb
;
38 extern int first_switched_dcplb
;
40 extern int nr_dcplb_miss
[], nr_icplb_miss
[], nr_icplb_supv_miss
[];
41 extern int nr_dcplb_prot
[], nr_cplb_flush
[];
45 extern int first_mask_dcplb
;
47 extern int page_mask_order
;
48 extern int page_mask_nelts
;
50 extern unsigned long *current_rwx_mask
[NR_CPUS
];
52 extern void flush_switched_cplbs(unsigned int);
53 extern void set_mask_dcplbs(unsigned long *, unsigned int);
55 extern void __noreturn
panic_cplb_error(int seqstat
, struct pt_regs
*);
57 #endif /* CONFIG_MPU */
59 extern void bfin_icache_init(struct cplb_entry
*icplb_tbl
);
60 extern void bfin_dcache_init(struct cplb_entry
*icplb_tbl
);
62 #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
63 extern void generate_cplb_tables_all(void);
64 extern void generate_cplb_tables_cpu(unsigned int cpu
);