diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2008-01-16 22:33:22 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-01-17 02:04:07 -0600 |
commit | 44a23cfd6360a68eaa41f945190618a55519eac3 (patch) | |
tree | de0fba321ba3ebe9bba235490fd94e82a2576c82 /cpu/mpc85xx/Makefile | |
parent | c8c41d4a80b1a8ad5984a287d81ea780496259f8 (diff) | |
download | u-boot-imx-44a23cfd6360a68eaa41f945190618a55519eac3.zip u-boot-imx-44a23cfd6360a68eaa41f945190618a55519eac3.tar.gz u-boot-imx-44a23cfd6360a68eaa41f945190618a55519eac3.tar.bz2 |
85xx: Introduce new tlb API
Add a set of functions to manipulate TLB entries:
* set_tlb() - write a tlb entry
* invalidate_tlb() - invalidate a tlb array
* disable_tlb() - disable a variable size tlb entry
* init_tlbs() - setup initial tlbs based on static table
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/Makefile')
-rw-r--r-- | cpu/mpc85xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mpc85xx/Makefile b/cpu/mpc85xx/Makefile index d179d70..2205dca 100644 --- a/cpu/mpc85xx/Makefile +++ b/cpu/mpc85xx/Makefile @@ -30,7 +30,7 @@ LIB = $(obj)lib$(CPU).a START = start.o resetvec.o COBJS-$(CONFIG_OF_LIBFDT) += fdt.o -COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o \ +COBJS = traps.o cpu.o cpu_init.o speed.o interrupts.o tlb.o \ pci.o serial_scc.o commproc.o ether_fcc.o spd_sdram.o qe_io.o \ $(COBJS-y) |