This is a mixture ofcMichael McTernan's patch and the existing cplb-mpu code.
We ditch the old cplb-nompu implementation, which is a good example of
why a good algorithm in a HLL is preferrable to a bad algorithm written in
assembly. Rather than try to construct a table of all posible CPLBs and
search it, we just create a (smaller) table of memory regions and
their attributes. Some of the data structures are now unified for both
the mpu and nompu cases. A lot of needless complexity in cplbinit.c is
removed.
Further optimizations:
* compile cplbmgr.c with a lot of -ffixed-reg options, and omit saving
these registers on the stack when entering a CPLB exception.
* lose cli/nop/nop/sti sequences for some workarounds - these don't
* make
sense in an exception context
Additional code unification should be possible after this.
[Mike Frysinger <vapier.adi@gmail.com>:
- convert CPP if statements to C if statements
- remove redundant statements
- use a do...while loop rather than a for loop to get slightly better
optimization and to avoid gcc "may be used uninitialized" warnings ...
we know that the [id]cplb_nr_bounds variables will never be 0, so this
is OK
- the no-mpu code was the last user of MAX_MEM_SIZE and with that rewritten,
we can punt it
- add some BUG_ON() checks to make sure we dont overflow the small
cplb_bounds array
- add i/d cplb entries for the bootrom because there is functions/data in
there we want to access
- we do not need a NULL trailing entry as any time we access the bounds
arrays, we use the nr_bounds variable
]
Signed-off-by: Michael McTernan <mmcternan@airvana.com>
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bernd Schmidt <bernds_cb1@t-online.de>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
/*
|
|
* Copyright 2004-2007 Analog Devices Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see the file COPYING, or write
|
|
* to the Free Software Foundation, Inc.,
|
|
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <asm/cacheflush.h>
|
|
#include <asm/blackfin.h>
|
|
#include <asm/cplb.h>
|
|
#include <asm/cplbinit.h>
|
|
|
|
#if defined(CONFIG_BFIN_ICACHE)
|
|
void __cpuinit bfin_icache_init(struct cplb_entry *icplb_tbl)
|
|
{
|
|
unsigned long ctrl;
|
|
int i;
|
|
|
|
SSYNC();
|
|
for (i = 0; i < MAX_CPLBS; i++) {
|
|
bfin_write32(ICPLB_ADDR0 + i * 4, icplb_tbl[i].addr);
|
|
bfin_write32(ICPLB_DATA0 + i * 4, icplb_tbl[i].data);
|
|
}
|
|
ctrl = bfin_read_IMEM_CONTROL();
|
|
ctrl |= IMC | ENICPLB;
|
|
bfin_write_IMEM_CONTROL(ctrl);
|
|
SSYNC();
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_BFIN_DCACHE)
|
|
void __cpuinit bfin_dcache_init(struct cplb_entry *dcplb_tbl)
|
|
{
|
|
unsigned long ctrl;
|
|
int i;
|
|
|
|
SSYNC();
|
|
for (i = 0; i < MAX_CPLBS; i++) {
|
|
bfin_write32(DCPLB_ADDR0 + i * 4, dcplb_tbl[i].addr);
|
|
bfin_write32(DCPLB_DATA0 + i * 4, dcplb_tbl[i].data);
|
|
}
|
|
|
|
ctrl = bfin_read_DMEM_CONTROL();
|
|
ctrl |= DMEM_CNTR;
|
|
bfin_write_DMEM_CONTROL(ctrl);
|
|
SSYNC();
|
|
}
|
|
#endif
|