29440a2b4c
- Move cache initialization to C from assembly. - Move anomaly workaround for writing [ID]MEM_CONTROL to assembly, so that we don't have to mess around with .align directives in C source. - Fix a bug where bfin_write_DMEM_CONTROL would write to IMEM_CONTROL - Break out CPLB related code from kernel/setup.c into their own file. - Don't define variables in header files, only declare them. Signed-off-by: Bernd Schmidt <bernd.schmidt@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
17 lines
531 B
Makefile
17 lines
531 B
Makefile
#
|
|
# arch/blackfin/kernel/Makefile
|
|
#
|
|
|
|
extra-y := init_task.o vmlinux.lds
|
|
|
|
obj-y := \
|
|
entry.o process.o bfin_ksyms.o ptrace.o setup.o signal.o \
|
|
sys_bfin.o time.o traps.o irqchip.o dma-mapping.o flat.o \
|
|
fixed_code.o cplbinit.o cacheinit.o
|
|
|
|
obj-$(CONFIG_BF53x) += bfin_gpio.o
|
|
obj-$(CONFIG_BF561) += bfin_gpio.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_BFIN_DMA_5XX) += bfin_dma_5xx.o
|
|
obj-$(CONFIG_DUAL_CORE_TEST_MODULE) += dualcore_test.o
|
|
obj-$(CONFIG_KGDB) += kgdb.o
|