Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vapier/blackfin
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vapier/blackfin: (96 commits) Blackfin: stop cleaning include/asm/asm-offsets.h Blackfin: scale calibration when cpu freq changes Blackfin: eat spurious space in asm/dpmc.h Blackfin: fix anomaly 283 handling with exact hardware error Blackfin: bf537-stamp: add example ADXL346 orientation resources Blackfin: bf537-stamp: add example AD2S1210 IIO resources Blackfin: don't support keypad wakeup from hibernate Blackfin: bf537-stamp: add example AD7416 IIO resources Blackfin: bf537-stamp: add example ADP8860 backlight/led resources Blackfin: bf537-stamp: add example AD7414 temp sensor resources Blackfin: rename AD1836 to AD183X in board files Blackfin: bf537-stamp: add example AD2S120x resources Blackfin: add support for the on-chip MAC status interrupts Blackfin: asm/page.h: pull in asm-generic headers Blackfin: mark gpio lib functions static Blackfin: bf537-stamp: add example ADAU1361 resources Blackfin: GPIO: implement to_irq handler Blackfin: bf537-stamp: add example ADP122/ADP150 power regulator resources Blackfin: bf537-stamp: add example AD2S90 resources Blackfin: bf537-stamp: add example AD5398 power regulator resources ...
This commit is contained in:
commit
3971047930
|
@ -23,12 +23,15 @@ config RWSEM_XCHGADD_ALGORITHM
|
||||||
|
|
||||||
config BLACKFIN
|
config BLACKFIN
|
||||||
def_bool y
|
def_bool y
|
||||||
|
select HAVE_ARCH_KGDB
|
||||||
|
select HAVE_ARCH_TRACEHOOK
|
||||||
select HAVE_FUNCTION_GRAPH_TRACER
|
select HAVE_FUNCTION_GRAPH_TRACER
|
||||||
select HAVE_FUNCTION_TRACER
|
select HAVE_FUNCTION_TRACER
|
||||||
|
select HAVE_FUNCTION_TRACE_MCOUNT_TEST
|
||||||
select HAVE_IDE
|
select HAVE_IDE
|
||||||
select HAVE_KERNEL_GZIP
|
select HAVE_KERNEL_GZIP if RAMKERNEL
|
||||||
select HAVE_KERNEL_BZIP2
|
select HAVE_KERNEL_BZIP2 if RAMKERNEL
|
||||||
select HAVE_KERNEL_LZMA
|
select HAVE_KERNEL_LZMA if RAMKERNEL
|
||||||
select HAVE_OPROFILE
|
select HAVE_OPROFILE
|
||||||
select ARCH_WANT_OPTIONAL_GPIOLIB
|
select ARCH_WANT_OPTIONAL_GPIOLIB
|
||||||
|
|
||||||
|
@ -45,9 +48,6 @@ config ZONE_DMA
|
||||||
config GENERIC_FIND_NEXT_BIT
|
config GENERIC_FIND_NEXT_BIT
|
||||||
def_bool y
|
def_bool y
|
||||||
|
|
||||||
config GENERIC_HWEIGHT
|
|
||||||
def_bool y
|
|
||||||
|
|
||||||
config GENERIC_HARDIRQS
|
config GENERIC_HARDIRQS
|
||||||
def_bool y
|
def_bool y
|
||||||
|
|
||||||
|
@ -239,7 +239,7 @@ endchoice
|
||||||
|
|
||||||
config SMP
|
config SMP
|
||||||
depends on BF561
|
depends on BF561
|
||||||
select GENERIC_CLOCKEVENTS
|
select TICKSOURCE_CORETMR
|
||||||
bool "Symmetric multi-processing support"
|
bool "Symmetric multi-processing support"
|
||||||
---help---
|
---help---
|
||||||
This enables support for systems with more than one CPU,
|
This enables support for systems with more than one CPU,
|
||||||
|
@ -253,11 +253,20 @@ config NR_CPUS
|
||||||
depends on SMP
|
depends on SMP
|
||||||
default 2 if BF561
|
default 2 if BF561
|
||||||
|
|
||||||
|
config HOTPLUG_CPU
|
||||||
|
bool "Support for hot-pluggable CPUs"
|
||||||
|
depends on SMP && HOTPLUG
|
||||||
|
default y
|
||||||
|
|
||||||
config IRQ_PER_CPU
|
config IRQ_PER_CPU
|
||||||
bool
|
bool
|
||||||
depends on SMP
|
depends on SMP
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config HAVE_LEGACY_PER_CPU_AREA
|
||||||
|
def_bool y
|
||||||
|
depends on SMP
|
||||||
|
|
||||||
config BF_REV_MIN
|
config BF_REV_MIN
|
||||||
int
|
int
|
||||||
default 0 if (BF51x || BF52x || (BF54x && !BF54xM))
|
default 0 if (BF51x || BF52x || (BF54x && !BF54xM))
|
||||||
|
@ -349,7 +358,7 @@ config MEM_MT48LC8M32B2B5_7
|
||||||
|
|
||||||
config MEM_MT48LC32M16A2TG_75
|
config MEM_MT48LC32M16A2TG_75
|
||||||
bool
|
bool
|
||||||
depends on (BFIN527_EZKIT || BFIN532_IP0X || BLACKSTAMP)
|
depends on (BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN532_IP0X || BLACKSTAMP)
|
||||||
default y
|
default y
|
||||||
|
|
||||||
config MEM_MT48LC32M8A2_75
|
config MEM_MT48LC32M8A2_75
|
||||||
|
@ -401,10 +410,18 @@ config BOOT_LOAD
|
||||||
config ROM_BASE
|
config ROM_BASE
|
||||||
hex "Kernel ROM Base"
|
hex "Kernel ROM Base"
|
||||||
depends on ROMKERNEL
|
depends on ROMKERNEL
|
||||||
default "0x20040000"
|
default "0x20040040"
|
||||||
range 0x20000000 0x20400000 if !(BF54x || BF561)
|
range 0x20000000 0x20400000 if !(BF54x || BF561)
|
||||||
range 0x20000000 0x30000000 if (BF54x || BF561)
|
range 0x20000000 0x30000000 if (BF54x || BF561)
|
||||||
help
|
help
|
||||||
|
Make sure your ROM base does not include any file-header
|
||||||
|
information that is prepended to the kernel.
|
||||||
|
|
||||||
|
For example, the bootable U-Boot format (created with
|
||||||
|
mkimage) has a 64 byte header (0x40). So while the image
|
||||||
|
you write to flash might start at say 0x20080000, you have
|
||||||
|
to add 0x40 to get the kernel's ROM base as it will come
|
||||||
|
after the header.
|
||||||
|
|
||||||
comment "Clock/PLL Setup"
|
comment "Clock/PLL Setup"
|
||||||
|
|
||||||
|
@ -448,7 +465,7 @@ config VCO_MULT
|
||||||
range 1 64
|
range 1 64
|
||||||
default "22" if BFIN533_EZKIT
|
default "22" if BFIN533_EZKIT
|
||||||
default "45" if BFIN533_STAMP
|
default "45" if BFIN533_STAMP
|
||||||
default "20" if (BFIN537_STAMP || BFIN527_EZKIT || BFIN548_EZKIT || BFIN548_BLUETECHNIX_CM || BFIN538_EZKIT)
|
default "20" if (BFIN537_STAMP || BFIN527_EZKIT || BFIN527_EZKIT_V2 || BFIN548_EZKIT || BFIN548_BLUETECHNIX_CM || BFIN538_EZKIT)
|
||||||
default "22" if BFIN533_BLUETECHNIX_CM
|
default "22" if BFIN533_BLUETECHNIX_CM
|
||||||
default "20" if (BFIN537_BLUETECHNIX_CM_E || BFIN537_BLUETECHNIX_CM_U || BFIN527_BLUETECHNIX_CM || BFIN561_BLUETECHNIX_CM)
|
default "20" if (BFIN537_BLUETECHNIX_CM_E || BFIN537_BLUETECHNIX_CM_U || BFIN527_BLUETECHNIX_CM || BFIN561_BLUETECHNIX_CM)
|
||||||
default "20" if BFIN561_EZKIT
|
default "20" if BFIN561_EZKIT
|
||||||
|
@ -609,23 +626,23 @@ config GENERIC_CLOCKEVENTS
|
||||||
bool "Generic clock events"
|
bool "Generic clock events"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
choice
|
menu "Clock event device"
|
||||||
prompt "Kernel Tick Source"
|
|
||||||
depends on GENERIC_CLOCKEVENTS
|
depends on GENERIC_CLOCKEVENTS
|
||||||
default TICKSOURCE_CORETMR
|
|
||||||
|
|
||||||
config TICKSOURCE_GPTMR0
|
config TICKSOURCE_GPTMR0
|
||||||
bool "Gptimer0 (SCLK domain)"
|
bool "GPTimer0"
|
||||||
|
depends on !SMP
|
||||||
select BFIN_GPTIMERS
|
select BFIN_GPTIMERS
|
||||||
|
|
||||||
config TICKSOURCE_CORETMR
|
config TICKSOURCE_CORETMR
|
||||||
bool "Core timer (CCLK domain)"
|
bool "Core timer"
|
||||||
|
default y
|
||||||
|
endmenu
|
||||||
|
|
||||||
endchoice
|
menu "Clock souce"
|
||||||
|
|
||||||
config CYCLES_CLOCKSOURCE
|
|
||||||
bool "Use 'CYCLES' as a clocksource"
|
|
||||||
depends on GENERIC_CLOCKEVENTS
|
depends on GENERIC_CLOCKEVENTS
|
||||||
|
config CYCLES_CLOCKSOURCE
|
||||||
|
bool "CYCLES"
|
||||||
|
default y
|
||||||
depends on !BFIN_SCRATCH_REG_CYCLES
|
depends on !BFIN_SCRATCH_REG_CYCLES
|
||||||
depends on !SMP
|
depends on !SMP
|
||||||
help
|
help
|
||||||
|
@ -636,10 +653,10 @@ config CYCLES_CLOCKSOURCE
|
||||||
writing the registers will most likely crash the kernel.
|
writing the registers will most likely crash the kernel.
|
||||||
|
|
||||||
config GPTMR0_CLOCKSOURCE
|
config GPTMR0_CLOCKSOURCE
|
||||||
bool "Use GPTimer0 as a clocksource"
|
bool "GPTimer0"
|
||||||
select BFIN_GPTIMERS
|
select BFIN_GPTIMERS
|
||||||
depends on GENERIC_CLOCKEVENTS
|
|
||||||
depends on !TICKSOURCE_GPTMR0
|
depends on !TICKSOURCE_GPTMR0
|
||||||
|
endmenu
|
||||||
|
|
||||||
config ARCH_USES_GETTIMEOFFSET
|
config ARCH_USES_GETTIMEOFFSET
|
||||||
depends on !GENERIC_CLOCKEVENTS
|
depends on !GENERIC_CLOCKEVENTS
|
||||||
|
@ -1116,24 +1133,6 @@ config PCI
|
||||||
|
|
||||||
source "drivers/pci/Kconfig"
|
source "drivers/pci/Kconfig"
|
||||||
|
|
||||||
config HOTPLUG
|
|
||||||
bool "Support for hot-pluggable device"
|
|
||||||
help
|
|
||||||
Say Y here if you want to plug devices into your computer while
|
|
||||||
the system is running, and be able to use them quickly. In many
|
|
||||||
cases, the devices can likewise be unplugged at any time too.
|
|
||||||
|
|
||||||
One well known example of this is PCMCIA- or PC-cards, credit-card
|
|
||||||
size devices such as network cards, modems or hard drives which are
|
|
||||||
plugged into slots found on all modern laptop computers. Another
|
|
||||||
example, used on modern desktops as well as laptops, is USB.
|
|
||||||
|
|
||||||
Enable HOTPLUG and build a modular kernel. Get agent software
|
|
||||||
(from <http://linux-hotplug.sourceforge.net/>) and install it.
|
|
||||||
Then your kernel will automatically call out to a user mode "policy
|
|
||||||
agent" (/sbin/hotplug) to load modules and set up software needed
|
|
||||||
to use devices as you hotplug them.
|
|
||||||
|
|
||||||
source "drivers/pcmcia/Kconfig"
|
source "drivers/pcmcia/Kconfig"
|
||||||
|
|
||||||
source "drivers/pci/hotplug/Kconfig"
|
source "drivers/pci/hotplug/Kconfig"
|
||||||
|
@ -1147,7 +1146,6 @@ source "fs/Kconfig.binfmt"
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "Power management options"
|
menu "Power management options"
|
||||||
depends on !SMP
|
|
||||||
|
|
||||||
source "kernel/power/Kconfig"
|
source "kernel/power/Kconfig"
|
||||||
|
|
||||||
|
@ -1240,7 +1238,6 @@ config PM_BFIN_WAKE_GP
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "CPU Frequency scaling"
|
menu "CPU Frequency scaling"
|
||||||
depends on !SMP
|
|
||||||
|
|
||||||
source "drivers/cpufreq/Kconfig"
|
source "drivers/cpufreq/Kconfig"
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,6 @@ config DEBUG_STACK_USAGE
|
||||||
|
|
||||||
This option will slow down process creation somewhat.
|
This option will slow down process creation somewhat.
|
||||||
|
|
||||||
config HAVE_ARCH_KGDB
|
|
||||||
def_bool y
|
|
||||||
|
|
||||||
config DEBUG_VERBOSE
|
config DEBUG_VERBOSE
|
||||||
bool "Verbose fault messages"
|
bool "Verbose fault messages"
|
||||||
default y
|
default y
|
||||||
|
@ -238,6 +235,15 @@ config EARLY_PRINTK
|
||||||
all of this lives in the init section and is thrown away after the
|
all of this lives in the init section and is thrown away after the
|
||||||
kernel boots completely.
|
kernel boots completely.
|
||||||
|
|
||||||
|
config NMI_WATCHDOG
|
||||||
|
bool "Enable NMI watchdog to help debugging lockup on SMP"
|
||||||
|
default n
|
||||||
|
depends on (SMP && !BFIN_SCRATCH_REG_RETN)
|
||||||
|
help
|
||||||
|
If any CPU in the system does not execute the period local timer
|
||||||
|
interrupt for more than 5 seconds, then the NMI handler dumps debug
|
||||||
|
information. This information can be used to debug the lockup.
|
||||||
|
|
||||||
config CPLB_INFO
|
config CPLB_INFO
|
||||||
bool "Display the CPLB information"
|
bool "Display the CPLB information"
|
||||||
help
|
help
|
||||||
|
|
|
@ -14,6 +14,9 @@ OBJCOPYFLAGS := -O binary -R .note -R .comment -S
|
||||||
GZFLAGS := -9
|
GZFLAGS := -9
|
||||||
|
|
||||||
KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
|
KBUILD_CFLAGS += $(call cc-option,-mno-fdpic)
|
||||||
|
ifeq ($(CONFIG_ROMKERNEL),y)
|
||||||
|
KBUILD_CFLAGS += -mlong-calls
|
||||||
|
endif
|
||||||
KBUILD_AFLAGS += $(call cc-option,-mno-fdpic)
|
KBUILD_AFLAGS += $(call cc-option,-mno-fdpic)
|
||||||
CFLAGS_MODULE += -mlong-calls
|
CFLAGS_MODULE += -mlong-calls
|
||||||
LDFLAGS_MODULE += -m elf32bfin
|
LDFLAGS_MODULE += -m elf32bfin
|
||||||
|
@ -130,7 +133,6 @@ KBUILD_CFLAGS += -Iarch/$(ARCH)/mach-$(MACHINE)/include
|
||||||
KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
|
KBUILD_CPPFLAGS += $(patsubst %,-I$(srctree)/%include,$(machdirs))
|
||||||
|
|
||||||
CLEAN_FILES += \
|
CLEAN_FILES += \
|
||||||
arch/$(ARCH)/include/asm/asm-offsets.h \
|
|
||||||
arch/$(ARCH)/kernel/asm-offsets.s \
|
arch/$(ARCH)/kernel/asm-offsets.s \
|
||||||
|
|
||||||
archclean:
|
archclean:
|
||||||
|
@ -138,7 +140,7 @@ archclean:
|
||||||
|
|
||||||
INSTALL_PATH ?= /tftpboot
|
INSTALL_PATH ?= /tftpboot
|
||||||
boot := arch/$(ARCH)/boot
|
boot := arch/$(ARCH)/boot
|
||||||
BOOT_TARGETS = vmImage vmImage.bin vmImage.bz2 vmImage.gz vmImage.lzma
|
BOOT_TARGETS = vmImage vmImage.bin vmImage.bz2 vmImage.gz vmImage.lzma vmImage.xip
|
||||||
PHONY += $(BOOT_TARGETS) install
|
PHONY += $(BOOT_TARGETS) install
|
||||||
KBUILD_IMAGE := $(boot)/vmImage
|
KBUILD_IMAGE := $(boot)/vmImage
|
||||||
|
|
||||||
|
@ -156,6 +158,7 @@ define archhelp
|
||||||
echo ' vmImage.bz2 - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bz2)'
|
echo ' vmImage.bz2 - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.bz2)'
|
||||||
echo '* vmImage.gz - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.gz)'
|
echo '* vmImage.gz - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.gz)'
|
||||||
echo ' vmImage.lzma - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzma)'
|
echo ' vmImage.lzma - Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.lzma)'
|
||||||
|
echo ' vmImage.xip - XIP Kernel-only image for U-Boot (arch/$(ARCH)/boot/vmImage.xip)'
|
||||||
echo ' install - Install kernel using'
|
echo ' install - Install kernel using'
|
||||||
echo ' (your) ~/bin/$(INSTALLKERNEL) or'
|
echo ' (your) ~/bin/$(INSTALLKERNEL) or'
|
||||||
echo ' (distribution) PATH: $(INSTALLKERNEL) or'
|
echo ' (distribution) PATH: $(INSTALLKERNEL) or'
|
||||||
|
|
|
@ -8,14 +8,18 @@
|
||||||
|
|
||||||
MKIMAGE := $(srctree)/scripts/mkuboot.sh
|
MKIMAGE := $(srctree)/scripts/mkuboot.sh
|
||||||
|
|
||||||
targets := vmImage vmImage.bin vmImage.bz2 vmImage.gz vmImage.lzma
|
targets := vmImage vmImage.bin vmImage.bz2 vmImage.gz vmImage.lzma vmImage.xip
|
||||||
extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma
|
extra-y += vmlinux.bin vmlinux.bin.gz vmlinux.bin.bz2 vmlinux.bin.lzma vmlinux.bin.xip
|
||||||
|
|
||||||
|
UIMAGE_OPTS-y :=
|
||||||
|
UIMAGE_OPTS-$(CONFIG_RAMKERNEL) += -a $(CONFIG_BOOT_LOAD)
|
||||||
|
UIMAGE_OPTS-$(CONFIG_ROMKERNEL) += -a $(CONFIG_ROM_BASE) -x
|
||||||
|
|
||||||
quiet_cmd_uimage = UIMAGE $@
|
quiet_cmd_uimage = UIMAGE $@
|
||||||
cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(ARCH) -O linux -T kernel \
|
cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(ARCH) -O linux -T kernel \
|
||||||
-C $(2) -n '$(MACHINE)-$(KERNELRELEASE)' -a $(CONFIG_BOOT_LOAD) \
|
-C $(2) -n '$(MACHINE)-$(KERNELRELEASE)' \
|
||||||
-e $(shell $(NM) vmlinux | awk '$$NF == "__start" {print $$1}') \
|
-e $(shell $(NM) vmlinux | awk '$$NF == "__start" {print $$1}') \
|
||||||
-d $< $@
|
$(UIMAGE_OPTS-y) -d $< $@
|
||||||
|
|
||||||
$(obj)/vmlinux.bin: vmlinux FORCE
|
$(obj)/vmlinux.bin: vmlinux FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
|
@ -29,6 +33,12 @@ $(obj)/vmlinux.bin.bz2: $(obj)/vmlinux.bin FORCE
|
||||||
$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
|
$(obj)/vmlinux.bin.lzma: $(obj)/vmlinux.bin FORCE
|
||||||
$(call if_changed,lzma)
|
$(call if_changed,lzma)
|
||||||
|
|
||||||
|
# The mkimage tool wants 64bytes prepended to the image
|
||||||
|
quiet_cmd_mk_bin_xip = BIN $@
|
||||||
|
cmd_mk_bin_xip = ( printf '%64s' | tr ' ' '\377' ; cat $< ) > $@
|
||||||
|
$(obj)/vmlinux.bin.xip: $(obj)/vmlinux.bin FORCE
|
||||||
|
$(call if_changed,mk_bin_xip)
|
||||||
|
|
||||||
$(obj)/vmImage.bin: $(obj)/vmlinux.bin
|
$(obj)/vmImage.bin: $(obj)/vmlinux.bin
|
||||||
$(call if_changed,uimage,none)
|
$(call if_changed,uimage,none)
|
||||||
|
|
||||||
|
@ -41,10 +51,15 @@ $(obj)/vmImage.gz: $(obj)/vmlinux.bin.gz
|
||||||
$(obj)/vmImage.lzma: $(obj)/vmlinux.bin.lzma
|
$(obj)/vmImage.lzma: $(obj)/vmlinux.bin.lzma
|
||||||
$(call if_changed,uimage,lzma)
|
$(call if_changed,uimage,lzma)
|
||||||
|
|
||||||
|
$(obj)/vmImage.xip: $(obj)/vmlinux.bin.xip
|
||||||
|
$(call if_changed,uimage,none)
|
||||||
|
|
||||||
suffix-y := bin
|
suffix-y := bin
|
||||||
suffix-$(CONFIG_KERNEL_GZIP) := gz
|
suffix-$(CONFIG_KERNEL_GZIP) := gz
|
||||||
suffix-$(CONFIG_KERNEL_BZIP2) := bz2
|
suffix-$(CONFIG_KERNEL_BZIP2) := bz2
|
||||||
suffix-$(CONFIG_KERNEL_LZMA) := lzma
|
suffix-$(CONFIG_KERNEL_LZMA) := lzma
|
||||||
|
suffix-$(CONFIG_ROMKERNEL) := xip
|
||||||
|
|
||||||
$(obj)/vmImage: $(obj)/vmImage.$(suffix-y)
|
$(obj)/vmImage: $(obj)/vmImage.$(suffix-y)
|
||||||
@ln -sf $(notdir $<) $@
|
@ln -sf $(notdir $<) $@
|
||||||
|
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_IOSCHED_NOOP=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
CONFIG_DEFAULT_NOOP=y
|
CONFIG_DEFAULT_NOOP=y
|
||||||
CONFIG_DEFAULT_IOSCHED="noop"
|
CONFIG_DEFAULT_IOSCHED="noop"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_BF518=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=0
|
CONFIG_BF_REV_MIN=0
|
||||||
|
@ -154,8 +182,8 @@ CONFIG_BF_REV_0_0=y
|
||||||
# CONFIG_BF_REV_0_6 is not set
|
# CONFIG_BF_REV_0_6 is not set
|
||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF51x=y
|
|
||||||
CONFIG_MEM_MT48LC32M8A2_75=y
|
CONFIG_MEM_MT48LC32M8A2_75=y
|
||||||
|
CONFIG_BF51x=y
|
||||||
CONFIG_BFIN518F_EZBRD=y
|
CONFIG_BFIN518F_EZBRD=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -313,7 +341,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -322,16 +349,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -342,7 +371,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -398,11 +427,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -426,7 +450,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -437,6 +460,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -450,7 +474,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -461,13 +488,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -488,6 +510,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -545,6 +568,7 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -559,6 +583,11 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y
|
||||||
# CONFIG_MTD_NAND is not set
|
# CONFIG_MTD_NAND is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -576,10 +605,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -614,6 +653,9 @@ CONFIG_PHYLIB=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
|
@ -622,10 +664,14 @@ CONFIG_BFIN_MAC=y
|
||||||
CONFIG_BFIN_TX_DESC_NUM=10
|
CONFIG_BFIN_TX_DESC_NUM=10
|
||||||
CONFIG_BFIN_RX_DESC_NUM=20
|
CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
# CONFIG_BFIN_MAC_RMII is not set
|
# CONFIG_BFIN_MAC_RMII is not set
|
||||||
|
CONFIG_BFIN_MAC_USE_HWSTAMP=y
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -634,15 +680,16 @@ CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -677,7 +724,10 @@ CONFIG_INPUT=y
|
||||||
# CONFIG_INPUT_TOUCHSCREEN is not set
|
# CONFIG_INPUT_TOUCHSCREEN is not set
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
# CONFIG_CONFIG_INPUT_PCF8574 is not set
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -688,16 +738,13 @@ CONFIG_INPUT_MISC=y
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
# CONFIG_BFIN_SPORT is not set
|
# CONFIG_BFIN_SPORT is not set
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
CONFIG_VT=y
|
CONFIG_VT=y
|
||||||
CONFIG_CONSOLE_TRANSLATIONS=y
|
CONFIG_CONSOLE_TRANSLATIONS=y
|
||||||
CONFIG_VT_CONSOLE=y
|
CONFIG_VT_CONSOLE=y
|
||||||
|
@ -715,6 +762,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -726,12 +774,10 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
CONFIG_BFIN_OTP=y
|
||||||
#
|
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -739,6 +785,7 @@ CONFIG_UNIX98_PTYS=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=y
|
CONFIG_I2C_CHARDEV=y
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -771,14 +818,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -795,13 +834,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_SPI_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -817,6 +861,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -827,11 +872,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -853,28 +902,20 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
|
# CONFIG_TWL4030_CORE is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_PMIC_ADP5520 is not set
|
# CONFIG_PMIC_ADP5520 is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -912,10 +953,11 @@ CONFIG_MMC_BLOCK_BOUNCE=y
|
||||||
# MMC/SD/SDIO Host Controller Drivers
|
# MMC/SD/SDIO Host Controller Drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MMC_SDHCI is not set
|
# CONFIG_MMC_SDHCI is not set
|
||||||
|
# CONFIG_MMC_AT91 is not set
|
||||||
|
# CONFIG_MMC_ATMELMCI is not set
|
||||||
|
# CONFIG_MMC_SPI is not set
|
||||||
CONFIG_SDH_BFIN=m
|
CONFIG_SDH_BFIN=m
|
||||||
CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND=y
|
CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND=y
|
||||||
# CONFIG_SDH_BFIN_ENABLE_SDIO_IRQ is not set
|
|
||||||
# CONFIG_MMC_SPI is not set
|
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
# CONFIG_ACCESSIBILITY is not set
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
|
@ -950,6 +992,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -961,6 +1004,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -981,9 +1025,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -994,9 +1049,13 @@ CONFIG_EXT2_FS=m
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1005,6 +1064,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1027,13 +1091,9 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1042,8 +1102,8 @@ CONFIG_SYSFS=y
|
||||||
# CONFIG_BFS_FS is not set
|
# CONFIG_BFS_FS is not set
|
||||||
# CONFIG_EFS_FS is not set
|
# CONFIG_EFS_FS is not set
|
||||||
# CONFIG_JFFS2_FS is not set
|
# CONFIG_JFFS2_FS is not set
|
||||||
# CONFIG_YAFFS_FS is not set
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1062,7 +1122,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1127,14 +1186,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1142,31 +1206,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1191,6 +1263,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1199,14 +1272,14 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1238,11 +1311,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1279,6 +1354,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1286,11 +1362,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1299,6 +1377,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_CRC7 is not set
|
# CONFIG_CRC7 is not set
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_IOSCHED_NOOP=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
CONFIG_DEFAULT_NOOP=y
|
CONFIG_DEFAULT_NOOP=y
|
||||||
CONFIG_DEFAULT_IOSCHED="noop"
|
CONFIG_DEFAULT_IOSCHED="noop"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_BF526=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=0
|
CONFIG_BF_REV_MIN=0
|
||||||
|
@ -154,8 +182,7 @@ CONFIG_BF_REV_0_0=y
|
||||||
# CONFIG_BF_REV_0_6 is not set
|
# CONFIG_BF_REV_0_6 is not set
|
||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF52x=y
|
CONFIG_MEM_MT48H32M16LFCJ_75=y
|
||||||
CONFIG_MEM_MT48LC32M16A2TG_75=y
|
|
||||||
CONFIG_IRQ_PLL_WAKEUP=7
|
CONFIG_IRQ_PLL_WAKEUP=7
|
||||||
CONFIG_IRQ_DMA0_ERROR=7
|
CONFIG_IRQ_DMA0_ERROR=7
|
||||||
CONFIG_IRQ_DMAR0_BLK=7
|
CONFIG_IRQ_DMAR0_BLK=7
|
||||||
|
@ -200,7 +227,9 @@ CONFIG_IRQ_MEM_DMA1=13
|
||||||
CONFIG_IRQ_WATCH=13
|
CONFIG_IRQ_WATCH=13
|
||||||
CONFIG_IRQ_PORTF_INTA=13
|
CONFIG_IRQ_PORTF_INTA=13
|
||||||
CONFIG_IRQ_PORTF_INTB=13
|
CONFIG_IRQ_PORTF_INTB=13
|
||||||
|
CONFIG_BF52x=y
|
||||||
# CONFIG_BFIN527_EZKIT is not set
|
# CONFIG_BFIN527_EZKIT is not set
|
||||||
|
# CONFIG_BFIN527_EZKIT_V2 is not set
|
||||||
# CONFIG_BFIN527_BLUETECHNIX_CM is not set
|
# CONFIG_BFIN527_BLUETECHNIX_CM is not set
|
||||||
CONFIG_BFIN526_EZBRD=y
|
CONFIG_BFIN526_EZBRD=y
|
||||||
|
|
||||||
|
@ -318,7 +347,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -327,16 +355,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -346,6 +376,10 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
#
|
#
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Asynchronous Memory Configuration
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# EBIU_AMGCTL Global Control
|
# EBIU_AMGCTL Global Control
|
||||||
#
|
#
|
||||||
|
@ -399,11 +433,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -427,7 +456,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -438,6 +466,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -451,7 +480,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -462,13 +494,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -489,6 +516,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -549,6 +577,7 @@ CONFIG_MTD_PHYSMAP=y
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
CONFIG_MTD_M25P80=y
|
CONFIG_MTD_M25P80=y
|
||||||
CONFIG_M25PXX_USE_FAST_READ=y
|
CONFIG_M25PXX_USE_FAST_READ=y
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -564,11 +593,6 @@ CONFIG_MTD_NAND=m
|
||||||
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
||||||
# CONFIG_MTD_NAND_ECC_SMC is not set
|
# CONFIG_MTD_NAND_ECC_SMC is not set
|
||||||
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
||||||
CONFIG_MTD_NAND_BFIN=m
|
|
||||||
CONFIG_BFIN_NAND_BASE=0x20212000
|
|
||||||
CONFIG_BFIN_NAND_CLE=2
|
|
||||||
CONFIG_BFIN_NAND_ALE=1
|
|
||||||
CONFIG_BFIN_NAND_READY=3
|
|
||||||
CONFIG_MTD_NAND_IDS=m
|
CONFIG_MTD_NAND_IDS=m
|
||||||
# CONFIG_MTD_NAND_BF5XX is not set
|
# CONFIG_MTD_NAND_BF5XX is not set
|
||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
|
@ -577,6 +601,11 @@ CONFIG_MTD_NAND_IDS=m
|
||||||
# CONFIG_MTD_ALAUDA is not set
|
# CONFIG_MTD_ALAUDA is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -595,10 +624,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -622,10 +661,6 @@ CONFIG_BLK_DEV_SR=m
|
||||||
# CONFIG_BLK_DEV_SR_VENDOR is not set
|
# CONFIG_BLK_DEV_SR_VENDOR is not set
|
||||||
# CONFIG_CHR_DEV_SG is not set
|
# CONFIG_CHR_DEV_SG is not set
|
||||||
# CONFIG_CHR_DEV_SCH is not set
|
# CONFIG_CHR_DEV_SCH is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
|
|
||||||
#
|
|
||||||
# CONFIG_SCSI_MULTI_LUN is not set
|
# CONFIG_SCSI_MULTI_LUN is not set
|
||||||
# CONFIG_SCSI_CONSTANTS is not set
|
# CONFIG_SCSI_CONSTANTS is not set
|
||||||
# CONFIG_SCSI_LOGGING is not set
|
# CONFIG_SCSI_LOGGING is not set
|
||||||
|
@ -642,6 +677,7 @@ CONFIG_SCSI_WAIT_SCAN=m
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
# CONFIG_SCSI_LOWLEVEL is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
# CONFIG_ATA is not set
|
# CONFIG_ATA is not set
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
CONFIG_NETDEVICES=y
|
CONFIG_NETDEVICES=y
|
||||||
|
@ -666,6 +702,9 @@ CONFIG_PHYLIB=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
|
@ -675,9 +714,12 @@ CONFIG_BFIN_TX_DESC_NUM=10
|
||||||
CONFIG_BFIN_RX_DESC_NUM=20
|
CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
CONFIG_BFIN_MAC_RMII=y
|
CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -686,15 +728,16 @@ CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB Network Adapters
|
# USB Network Adapters
|
||||||
|
@ -744,7 +787,11 @@ CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_YEALINK is not set
|
# CONFIG_INPUT_YEALINK is not set
|
||||||
# CONFIG_INPUT_CM109 is not set
|
# CONFIG_INPUT_CM109 is not set
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
# CONFIG_CONFIG_INPUT_PCF8574 is not set
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_BFIN_ROTARY is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -755,16 +802,13 @@ CONFIG_INPUT_MISC=y
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
# CONFIG_BFIN_SPORT is not set
|
# CONFIG_BFIN_SPORT is not set
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
CONFIG_VT=y
|
CONFIG_VT=y
|
||||||
CONFIG_CONSOLE_TRANSLATIONS=y
|
CONFIG_CONSOLE_TRANSLATIONS=y
|
||||||
CONFIG_VT_CONSOLE=y
|
CONFIG_VT_CONSOLE=y
|
||||||
|
@ -782,6 +826,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -793,14 +838,10 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
CONFIG_BFIN_OTP=y
|
CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -808,6 +849,7 @@ CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -841,14 +883,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -865,13 +899,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -887,6 +926,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -897,11 +937,20 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
CONFIG_HWMON=y
|
CONFIG_HWMON=y
|
||||||
# CONFIG_HWMON_VID is not set
|
# CONFIG_HWMON_VID is not set
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Native drivers
|
||||||
|
#
|
||||||
# CONFIG_SENSORS_AD7414 is not set
|
# CONFIG_SENSORS_AD7414 is not set
|
||||||
# CONFIG_SENSORS_AD7418 is not set
|
# CONFIG_SENSORS_AD7418 is not set
|
||||||
# CONFIG_SENSORS_ADCXX is not set
|
# CONFIG_SENSORS_ADCXX is not set
|
||||||
|
@ -914,11 +963,13 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_ADT7462 is not set
|
# CONFIG_SENSORS_ADT7462 is not set
|
||||||
# CONFIG_SENSORS_ADT7470 is not set
|
# CONFIG_SENSORS_ADT7470 is not set
|
||||||
# CONFIG_SENSORS_ADT7473 is not set
|
# CONFIG_SENSORS_ADT7473 is not set
|
||||||
|
# CONFIG_SENSORS_ADT7475 is not set
|
||||||
# CONFIG_SENSORS_ATXP1 is not set
|
# CONFIG_SENSORS_ATXP1 is not set
|
||||||
# CONFIG_SENSORS_DS1621 is not set
|
# CONFIG_SENSORS_DS1621 is not set
|
||||||
# CONFIG_SENSORS_F71805F is not set
|
# CONFIG_SENSORS_F71805F is not set
|
||||||
# CONFIG_SENSORS_F71882FG is not set
|
# CONFIG_SENSORS_F71882FG is not set
|
||||||
# CONFIG_SENSORS_F75375S is not set
|
# CONFIG_SENSORS_F75375S is not set
|
||||||
|
# CONFIG_SENSORS_G760A is not set
|
||||||
# CONFIG_SENSORS_GL518SM is not set
|
# CONFIG_SENSORS_GL518SM is not set
|
||||||
# CONFIG_SENSORS_GL520SM is not set
|
# CONFIG_SENSORS_GL520SM is not set
|
||||||
# CONFIG_SENSORS_IT87 is not set
|
# CONFIG_SENSORS_IT87 is not set
|
||||||
|
@ -934,17 +985,24 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_LM90 is not set
|
# CONFIG_SENSORS_LM90 is not set
|
||||||
# CONFIG_SENSORS_LM92 is not set
|
# CONFIG_SENSORS_LM92 is not set
|
||||||
# CONFIG_SENSORS_LM93 is not set
|
# CONFIG_SENSORS_LM93 is not set
|
||||||
|
# CONFIG_SENSORS_LTC4215 is not set
|
||||||
|
# CONFIG_SENSORS_LTC4245 is not set
|
||||||
|
# CONFIG_SENSORS_LM95241 is not set
|
||||||
# CONFIG_SENSORS_MAX1111 is not set
|
# CONFIG_SENSORS_MAX1111 is not set
|
||||||
# CONFIG_SENSORS_MAX1619 is not set
|
# CONFIG_SENSORS_MAX1619 is not set
|
||||||
# CONFIG_SENSORS_MAX6650 is not set
|
# CONFIG_SENSORS_MAX6650 is not set
|
||||||
# CONFIG_SENSORS_PC87360 is not set
|
# CONFIG_SENSORS_PC87360 is not set
|
||||||
# CONFIG_SENSORS_PC87427 is not set
|
# CONFIG_SENSORS_PC87427 is not set
|
||||||
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
|
# CONFIG_SENSORS_SHT15 is not set
|
||||||
# CONFIG_SENSORS_DME1737 is not set
|
# CONFIG_SENSORS_DME1737 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M1 is not set
|
# CONFIG_SENSORS_SMSC47M1 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M192 is not set
|
# CONFIG_SENSORS_SMSC47M192 is not set
|
||||||
# CONFIG_SENSORS_SMSC47B397 is not set
|
# CONFIG_SENSORS_SMSC47B397 is not set
|
||||||
# CONFIG_SENSORS_ADS7828 is not set
|
# CONFIG_SENSORS_ADS7828 is not set
|
||||||
# CONFIG_SENSORS_THMC50 is not set
|
# CONFIG_SENSORS_THMC50 is not set
|
||||||
|
# CONFIG_SENSORS_TMP401 is not set
|
||||||
|
# CONFIG_SENSORS_TMP421 is not set
|
||||||
# CONFIG_SENSORS_VT1211 is not set
|
# CONFIG_SENSORS_VT1211 is not set
|
||||||
# CONFIG_SENSORS_W83781D is not set
|
# CONFIG_SENSORS_W83781D is not set
|
||||||
# CONFIG_SENSORS_W83791D is not set
|
# CONFIG_SENSORS_W83791D is not set
|
||||||
|
@ -954,9 +1012,8 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_W83L786NG is not set
|
# CONFIG_SENSORS_W83L786NG is not set
|
||||||
# CONFIG_SENSORS_W83627HF is not set
|
# CONFIG_SENSORS_W83627HF is not set
|
||||||
# CONFIG_SENSORS_W83627EHF is not set
|
# CONFIG_SENSORS_W83627EHF is not set
|
||||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
# CONFIG_SENSORS_LIS3_SPI is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -983,28 +1040,20 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
|
# CONFIG_TWL4030_CORE is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_PMIC_ADP5520 is not set
|
# CONFIG_PMIC_ADP5520 is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -1026,7 +1075,6 @@ CONFIG_DUMMY_CONSOLE=y
|
||||||
# CONFIG_SOUND is not set
|
# CONFIG_SOUND is not set
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1039,30 +1087,35 @@ CONFIG_USB_HID=y
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
CONFIG_HID_A4TECH=y
|
CONFIG_HID_A4TECH=y
|
||||||
CONFIG_HID_APPLE=y
|
CONFIG_HID_APPLE=y
|
||||||
CONFIG_HID_BELKIN=y
|
CONFIG_HID_BELKIN=y
|
||||||
CONFIG_HID_BRIGHT=y
|
|
||||||
CONFIG_HID_CHERRY=y
|
CONFIG_HID_CHERRY=y
|
||||||
CONFIG_HID_CHICONY=y
|
CONFIG_HID_CHICONY=y
|
||||||
CONFIG_HID_CYPRESS=y
|
CONFIG_HID_CYPRESS=y
|
||||||
CONFIG_HID_DELL=y
|
# CONFIG_HID_DRAGONRISE is not set
|
||||||
CONFIG_HID_EZKEY=y
|
CONFIG_HID_EZKEY=y
|
||||||
|
# CONFIG_HID_KYE is not set
|
||||||
CONFIG_HID_GYRATION=y
|
CONFIG_HID_GYRATION=y
|
||||||
|
# CONFIG_HID_TWINHAN is not set
|
||||||
|
# CONFIG_HID_KENSINGTON is not set
|
||||||
CONFIG_HID_LOGITECH=y
|
CONFIG_HID_LOGITECH=y
|
||||||
# CONFIG_LOGITECH_FF is not set
|
# CONFIG_LOGITECH_FF is not set
|
||||||
# CONFIG_LOGIRUMBLEPAD2_FF is not set
|
# CONFIG_LOGIRUMBLEPAD2_FF is not set
|
||||||
CONFIG_HID_MICROSOFT=y
|
CONFIG_HID_MICROSOFT=y
|
||||||
CONFIG_HID_MONTEREY=y
|
CONFIG_HID_MONTEREY=y
|
||||||
|
# CONFIG_HID_NTRIG is not set
|
||||||
CONFIG_HID_PANTHERLORD=y
|
CONFIG_HID_PANTHERLORD=y
|
||||||
# CONFIG_PANTHERLORD_FF is not set
|
# CONFIG_PANTHERLORD_FF is not set
|
||||||
CONFIG_HID_PETALYNX=y
|
CONFIG_HID_PETALYNX=y
|
||||||
CONFIG_HID_SAMSUNG=y
|
CONFIG_HID_SAMSUNG=y
|
||||||
CONFIG_HID_SONY=y
|
CONFIG_HID_SONY=y
|
||||||
CONFIG_HID_SUNPLUS=y
|
CONFIG_HID_SUNPLUS=y
|
||||||
CONFIG_THRUSTMASTER_FF=m
|
# CONFIG_HID_GREENASIA is not set
|
||||||
CONFIG_ZEROPLUS_FF=m
|
# CONFIG_HID_SMARTJOYPLUS is not set
|
||||||
|
# CONFIG_HID_TOPSEED is not set
|
||||||
|
# CONFIG_HID_THRUSTMASTER is not set
|
||||||
|
# CONFIG_HID_ZEROPLUS is not set
|
||||||
CONFIG_USB_SUPPORT=y
|
CONFIG_USB_SUPPORT=y
|
||||||
CONFIG_USB_ARCH_HAS_HCD=y
|
CONFIG_USB_ARCH_HAS_HCD=y
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
|
@ -1088,6 +1141,7 @@ CONFIG_USB_MON=y
|
||||||
# USB Host Controller Drivers
|
# USB Host Controller Drivers
|
||||||
#
|
#
|
||||||
# CONFIG_USB_C67X00_HCD is not set
|
# CONFIG_USB_C67X00_HCD is not set
|
||||||
|
# CONFIG_USB_OXU210HP_HCD is not set
|
||||||
# CONFIG_USB_ISP116X_HCD is not set
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
# CONFIG_USB_ISP1760_HCD is not set
|
# CONFIG_USB_ISP1760_HCD is not set
|
||||||
# CONFIG_USB_ISP1362_HCD is not set
|
# CONFIG_USB_ISP1362_HCD is not set
|
||||||
|
@ -1118,18 +1172,17 @@ CONFIG_USB_INVENTRA_DMA=y
|
||||||
# CONFIG_USB_TMC is not set
|
# CONFIG_USB_TMC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
|
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# see USB_STORAGE Help for more information
|
# also be needed; see USB_STORAGE Help for more info
|
||||||
#
|
#
|
||||||
CONFIG_USB_STORAGE=y
|
CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_STORAGE_DEBUG is not set
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
# CONFIG_USB_STORAGE_DATAFAB is not set
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
# CONFIG_USB_STORAGE_FREECOM is not set
|
# CONFIG_USB_STORAGE_FREECOM is not set
|
||||||
# CONFIG_USB_STORAGE_ISD200 is not set
|
# CONFIG_USB_STORAGE_ISD200 is not set
|
||||||
# CONFIG_USB_STORAGE_DPCM is not set
|
|
||||||
# CONFIG_USB_STORAGE_USBAT is not set
|
# CONFIG_USB_STORAGE_USBAT is not set
|
||||||
# CONFIG_USB_STORAGE_SDDR09 is not set
|
# CONFIG_USB_STORAGE_SDDR09 is not set
|
||||||
# CONFIG_USB_STORAGE_SDDR55 is not set
|
# CONFIG_USB_STORAGE_SDDR55 is not set
|
||||||
|
@ -1165,7 +1218,6 @@ CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_LED is not set
|
# CONFIG_USB_LED is not set
|
||||||
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
||||||
# CONFIG_USB_CYTHERM is not set
|
# CONFIG_USB_CYTHERM is not set
|
||||||
# CONFIG_USB_PHIDGET is not set
|
|
||||||
# CONFIG_USB_IDMOUSE is not set
|
# CONFIG_USB_IDMOUSE is not set
|
||||||
# CONFIG_USB_FTDI_ELAN is not set
|
# CONFIG_USB_FTDI_ELAN is not set
|
||||||
# CONFIG_USB_APPLEDISPLAY is not set
|
# CONFIG_USB_APPLEDISPLAY is not set
|
||||||
|
@ -1177,6 +1229,13 @@ CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_ISIGHTFW is not set
|
# CONFIG_USB_ISIGHTFW is not set
|
||||||
# CONFIG_USB_VST is not set
|
# CONFIG_USB_VST is not set
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# OTG and related infrastructure
|
||||||
|
#
|
||||||
|
CONFIG_USB_OTG_UTILS=y
|
||||||
|
# CONFIG_USB_GPIO_VBUS is not set
|
||||||
|
CONFIG_NOP_USB_XCEIV=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
@ -1212,6 +1271,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1223,6 +1283,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1243,9 +1304,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1256,9 +1328,13 @@ CONFIG_EXT2_FS=m
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1267,6 +1343,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1291,13 +1372,9 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1316,17 +1393,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1345,7 +1413,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1360,7 +1427,7 @@ CONFIG_SMB_FS=m
|
||||||
#
|
#
|
||||||
# CONFIG_PARTITION_ADVANCED is not set
|
# CONFIG_PARTITION_ADVANCED is not set
|
||||||
CONFIG_MSDOS_PARTITION=y
|
CONFIG_MSDOS_PARTITION=y
|
||||||
CONFIG_NLS=m
|
CONFIG_NLS=y
|
||||||
CONFIG_NLS_DEFAULT="iso8859-1"
|
CONFIG_NLS_DEFAULT="iso8859-1"
|
||||||
CONFIG_NLS_CODEPAGE_437=m
|
CONFIG_NLS_CODEPAGE_437=m
|
||||||
# CONFIG_NLS_CODEPAGE_737 is not set
|
# CONFIG_NLS_CODEPAGE_737 is not set
|
||||||
|
@ -1410,14 +1477,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1425,31 +1497,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1474,6 +1554,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1482,15 +1563,15 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
# CONFIG_SECURITY_ROOTPLUG is not set
|
# CONFIG_SECURITY_ROOTPLUG is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1522,11 +1603,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1563,6 +1646,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1570,11 +1654,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1584,6 +1670,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,29 +160,28 @@ CONFIG_BF527=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=0
|
CONFIG_BF_REV_MIN=0
|
||||||
CONFIG_BF_REV_MAX=2
|
CONFIG_BF_REV_MAX=2
|
||||||
# CONFIG_BF_REV_0_0 is not set
|
# CONFIG_BF_REV_0_0 is not set
|
||||||
# CONFIG_BF_REV_0_1 is not set
|
CONFIG_BF_REV_0_1=y
|
||||||
CONFIG_BF_REV_0_2=y
|
# CONFIG_BF_REV_0_2 is not set
|
||||||
# CONFIG_BF_REV_0_3 is not set
|
# CONFIG_BF_REV_0_3 is not set
|
||||||
# CONFIG_BF_REV_0_4 is not set
|
# CONFIG_BF_REV_0_4 is not set
|
||||||
# CONFIG_BF_REV_0_5 is not set
|
# CONFIG_BF_REV_0_5 is not set
|
||||||
# CONFIG_BF_REV_0_6 is not set
|
# CONFIG_BF_REV_0_6 is not set
|
||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF52x=y
|
|
||||||
CONFIG_MEM_MT48LC32M16A2TG_75=y
|
CONFIG_MEM_MT48LC32M16A2TG_75=y
|
||||||
CONFIG_IRQ_PLL_WAKEUP=7
|
CONFIG_IRQ_PLL_WAKEUP=7
|
||||||
CONFIG_IRQ_DMA0_ERROR=7
|
CONFIG_IRQ_DMA0_ERROR=7
|
||||||
|
@ -200,7 +227,9 @@ CONFIG_IRQ_MEM_DMA1=13
|
||||||
CONFIG_IRQ_WATCH=13
|
CONFIG_IRQ_WATCH=13
|
||||||
CONFIG_IRQ_PORTF_INTA=13
|
CONFIG_IRQ_PORTF_INTA=13
|
||||||
CONFIG_IRQ_PORTF_INTB=13
|
CONFIG_IRQ_PORTF_INTB=13
|
||||||
|
CONFIG_BF52x=y
|
||||||
CONFIG_BFIN527_EZKIT=y
|
CONFIG_BFIN527_EZKIT=y
|
||||||
|
# CONFIG_BFIN527_EZKIT_V2 is not set
|
||||||
# CONFIG_BFIN527_BLUETECHNIX_CM is not set
|
# CONFIG_BFIN527_BLUETECHNIX_CM is not set
|
||||||
# CONFIG_BFIN526_EZBRD is not set
|
# CONFIG_BFIN526_EZBRD is not set
|
||||||
|
|
||||||
|
@ -318,7 +347,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -327,16 +355,18 @@ CONFIG_BFIN_GPTIMERS=y
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -347,7 +377,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -403,11 +433,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -431,7 +456,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -442,6 +466,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -455,7 +480,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -508,13 +536,8 @@ CONFIG_SIR_BFIN_DMA=y
|
||||||
# CONFIG_MCS_FIR is not set
|
# CONFIG_MCS_FIR is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -535,6 +558,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -593,6 +617,7 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
CONFIG_MTD_M25P80=y
|
CONFIG_MTD_M25P80=y
|
||||||
CONFIG_M25PXX_USE_FAST_READ=y
|
CONFIG_M25PXX_USE_FAST_READ=y
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -608,11 +633,6 @@ CONFIG_MTD_NAND=m
|
||||||
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
||||||
# CONFIG_MTD_NAND_ECC_SMC is not set
|
# CONFIG_MTD_NAND_ECC_SMC is not set
|
||||||
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
||||||
CONFIG_MTD_NAND_BFIN=m
|
|
||||||
CONFIG_BFIN_NAND_BASE=0x20212000
|
|
||||||
CONFIG_BFIN_NAND_CLE=2
|
|
||||||
CONFIG_BFIN_NAND_ALE=1
|
|
||||||
CONFIG_BFIN_NAND_READY=3
|
|
||||||
CONFIG_MTD_NAND_IDS=m
|
CONFIG_MTD_NAND_IDS=m
|
||||||
# CONFIG_MTD_NAND_BF5XX is not set
|
# CONFIG_MTD_NAND_BF5XX is not set
|
||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
|
@ -621,6 +641,11 @@ CONFIG_MTD_NAND_IDS=m
|
||||||
# CONFIG_MTD_ALAUDA is not set
|
# CONFIG_MTD_ALAUDA is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -639,10 +664,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -666,10 +701,6 @@ CONFIG_BLK_DEV_SR=m
|
||||||
# CONFIG_BLK_DEV_SR_VENDOR is not set
|
# CONFIG_BLK_DEV_SR_VENDOR is not set
|
||||||
# CONFIG_CHR_DEV_SG is not set
|
# CONFIG_CHR_DEV_SG is not set
|
||||||
# CONFIG_CHR_DEV_SCH is not set
|
# CONFIG_CHR_DEV_SCH is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
|
|
||||||
#
|
|
||||||
# CONFIG_SCSI_MULTI_LUN is not set
|
# CONFIG_SCSI_MULTI_LUN is not set
|
||||||
# CONFIG_SCSI_CONSTANTS is not set
|
# CONFIG_SCSI_CONSTANTS is not set
|
||||||
# CONFIG_SCSI_LOGGING is not set
|
# CONFIG_SCSI_LOGGING is not set
|
||||||
|
@ -686,6 +717,7 @@ CONFIG_SCSI_WAIT_SCAN=m
|
||||||
# CONFIG_SCSI_SRP_ATTRS is not set
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
# CONFIG_SCSI_LOWLEVEL is not set
|
||||||
# CONFIG_SCSI_DH is not set
|
# CONFIG_SCSI_DH is not set
|
||||||
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
# CONFIG_ATA is not set
|
# CONFIG_ATA is not set
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
CONFIG_NETDEVICES=y
|
CONFIG_NETDEVICES=y
|
||||||
|
@ -710,6 +742,9 @@ CONFIG_PHYLIB=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
|
@ -720,9 +755,12 @@ CONFIG_BFIN_TX_DESC_NUM=10
|
||||||
CONFIG_BFIN_RX_DESC_NUM=20
|
CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
CONFIG_BFIN_MAC_RMII=y
|
CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -731,15 +769,16 @@ CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB Network Adapters
|
# USB Network Adapters
|
||||||
|
@ -789,7 +828,11 @@ CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_YEALINK is not set
|
# CONFIG_INPUT_YEALINK is not set
|
||||||
# CONFIG_INPUT_CM109 is not set
|
# CONFIG_INPUT_CM109 is not set
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
# CONFIG_CONFIG_INPUT_PCF8574 is not set
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_BFIN_ROTARY is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -800,16 +843,13 @@ CONFIG_INPUT_MISC=y
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=m
|
CONFIG_BFIN_SPORT=m
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
CONFIG_VT=y
|
CONFIG_VT=y
|
||||||
CONFIG_CONSOLE_TRANSLATIONS=y
|
CONFIG_CONSOLE_TRANSLATIONS=y
|
||||||
CONFIG_VT_CONSOLE=y
|
CONFIG_VT_CONSOLE=y
|
||||||
|
@ -827,6 +867,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -838,14 +879,10 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
CONFIG_BFIN_OTP=y
|
CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -853,6 +890,7 @@ CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -886,14 +924,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -910,13 +940,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -932,6 +967,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -942,11 +978,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -973,28 +1013,21 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_UCB1400_CORE is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
|
# CONFIG_TWL4030_CORE is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_PMIC_ADP5520 is not set
|
# CONFIG_PMIC_ADP5520 is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -1030,15 +1063,18 @@ CONFIG_FB_BFIN_T350MCQB=y
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
|
# CONFIG_FB_BROADSHEET is not set
|
||||||
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
||||||
CONFIG_LCD_CLASS_DEVICE=m
|
CONFIG_LCD_CLASS_DEVICE=m
|
||||||
|
# CONFIG_LCD_LMS283GF05 is not set
|
||||||
CONFIG_LCD_LTV350QV=m
|
CONFIG_LCD_LTV350QV=m
|
||||||
# CONFIG_LCD_ILI9320 is not set
|
# CONFIG_LCD_ILI9320 is not set
|
||||||
# CONFIG_LCD_TDO24M is not set
|
# CONFIG_LCD_TDO24M is not set
|
||||||
# CONFIG_LCD_VGG2432A4 is not set
|
# CONFIG_LCD_VGG2432A4 is not set
|
||||||
# CONFIG_LCD_PLATFORM is not set
|
# CONFIG_LCD_PLATFORM is not set
|
||||||
CONFIG_BACKLIGHT_CLASS_DEVICE=m
|
CONFIG_BACKLIGHT_CLASS_DEVICE=m
|
||||||
# CONFIG_BACKLIGHT_CORGI is not set
|
CONFIG_BACKLIGHT_GENERIC=m
|
||||||
|
# CONFIG_BACKLIGHT_ADP8870 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Display device support
|
# Display device support
|
||||||
|
@ -1066,6 +1102,7 @@ CONFIG_SOUND=m
|
||||||
CONFIG_SND=m
|
CONFIG_SND=m
|
||||||
CONFIG_SND_TIMER=m
|
CONFIG_SND_TIMER=m
|
||||||
CONFIG_SND_PCM=m
|
CONFIG_SND_PCM=m
|
||||||
|
CONFIG_SND_JACK=y
|
||||||
# CONFIG_SND_SEQUENCER is not set
|
# CONFIG_SND_SEQUENCER is not set
|
||||||
# CONFIG_SND_MIXER_OSS is not set
|
# CONFIG_SND_MIXER_OSS is not set
|
||||||
# CONFIG_SND_PCM_OSS is not set
|
# CONFIG_SND_PCM_OSS is not set
|
||||||
|
@ -1074,6 +1111,11 @@ CONFIG_SND_SUPPORT_OLD_API=y
|
||||||
CONFIG_SND_VERBOSE_PROCFS=y
|
CONFIG_SND_VERBOSE_PROCFS=y
|
||||||
# CONFIG_SND_VERBOSE_PRINTK is not set
|
# CONFIG_SND_VERBOSE_PRINTK is not set
|
||||||
# CONFIG_SND_DEBUG is not set
|
# CONFIG_SND_DEBUG is not set
|
||||||
|
# CONFIG_SND_RAWMIDI_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL3_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
CONFIG_SND_DRIVERS=y
|
CONFIG_SND_DRIVERS=y
|
||||||
# CONFIG_SND_DUMMY is not set
|
# CONFIG_SND_DUMMY is not set
|
||||||
# CONFIG_SND_MTPAV is not set
|
# CONFIG_SND_MTPAV is not set
|
||||||
|
@ -1084,7 +1126,6 @@ CONFIG_SND_SPI=y
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
# CONFIG_SND_BLACKFIN_AD1836 is not set
|
|
||||||
# CONFIG_SND_BFIN_AD73322 is not set
|
# CONFIG_SND_BFIN_AD73322 is not set
|
||||||
CONFIG_SND_USB=y
|
CONFIG_SND_USB=y
|
||||||
# CONFIG_SND_USB_AUDIO is not set
|
# CONFIG_SND_USB_AUDIO is not set
|
||||||
|
@ -1094,15 +1135,19 @@ CONFIG_SND_SOC_AC97_BUS=y
|
||||||
CONFIG_SND_BF5XX_I2S=m
|
CONFIG_SND_BF5XX_I2S=m
|
||||||
CONFIG_SND_BF5XX_SOC_SSM2602=m
|
CONFIG_SND_BF5XX_SOC_SSM2602=m
|
||||||
# CONFIG_SND_BF5XX_SOC_AD73311 is not set
|
# CONFIG_SND_BF5XX_SOC_AD73311 is not set
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1371 is not set
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1761 is not set
|
||||||
|
# CONFIG_SND_BF5XX_TDM is not set
|
||||||
CONFIG_SND_BF5XX_AC97=m
|
CONFIG_SND_BF5XX_AC97=m
|
||||||
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
||||||
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
||||||
|
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
||||||
|
CONFIG_SND_BF5XX_SOC_AD1980=m
|
||||||
CONFIG_SND_BF5XX_SOC_SPORT=m
|
CONFIG_SND_BF5XX_SOC_SPORT=m
|
||||||
CONFIG_SND_BF5XX_SOC_I2S=m
|
CONFIG_SND_BF5XX_SOC_I2S=m
|
||||||
CONFIG_SND_BF5XX_SOC_AC97=m
|
CONFIG_SND_BF5XX_SOC_AC97=m
|
||||||
CONFIG_SND_BF5XX_SOC_AD1980=m
|
|
||||||
CONFIG_SND_BF5XX_SPORT_NUM=0
|
CONFIG_SND_BF5XX_SPORT_NUM=0
|
||||||
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
CONFIG_SND_SOC_I2C_AND_SPI=m
|
||||||
# CONFIG_SND_SOC_ALL_CODECS is not set
|
# CONFIG_SND_SOC_ALL_CODECS is not set
|
||||||
CONFIG_SND_SOC_AD1980=m
|
CONFIG_SND_SOC_AD1980=m
|
||||||
CONFIG_SND_SOC_SSM2602=m
|
CONFIG_SND_SOC_SSM2602=m
|
||||||
|
@ -1110,7 +1155,6 @@ CONFIG_SND_SOC_SSM2602=m
|
||||||
CONFIG_AC97_BUS=m
|
CONFIG_AC97_BUS=m
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1123,30 +1167,35 @@ CONFIG_USB_HID=y
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
CONFIG_HID_A4TECH=y
|
CONFIG_HID_A4TECH=y
|
||||||
CONFIG_HID_APPLE=y
|
CONFIG_HID_APPLE=y
|
||||||
CONFIG_HID_BELKIN=y
|
CONFIG_HID_BELKIN=y
|
||||||
CONFIG_HID_BRIGHT=y
|
|
||||||
CONFIG_HID_CHERRY=y
|
CONFIG_HID_CHERRY=y
|
||||||
CONFIG_HID_CHICONY=y
|
CONFIG_HID_CHICONY=y
|
||||||
CONFIG_HID_CYPRESS=y
|
CONFIG_HID_CYPRESS=y
|
||||||
CONFIG_HID_DELL=y
|
# CONFIG_HID_DRAGONRISE is not set
|
||||||
CONFIG_HID_EZKEY=y
|
CONFIG_HID_EZKEY=y
|
||||||
|
# CONFIG_HID_KYE is not set
|
||||||
CONFIG_HID_GYRATION=y
|
CONFIG_HID_GYRATION=y
|
||||||
|
# CONFIG_HID_TWINHAN is not set
|
||||||
|
# CONFIG_HID_KENSINGTON is not set
|
||||||
CONFIG_HID_LOGITECH=y
|
CONFIG_HID_LOGITECH=y
|
||||||
# CONFIG_LOGITECH_FF is not set
|
# CONFIG_LOGITECH_FF is not set
|
||||||
# CONFIG_LOGIRUMBLEPAD2_FF is not set
|
# CONFIG_LOGIRUMBLEPAD2_FF is not set
|
||||||
CONFIG_HID_MICROSOFT=y
|
CONFIG_HID_MICROSOFT=y
|
||||||
CONFIG_HID_MONTEREY=y
|
CONFIG_HID_MONTEREY=y
|
||||||
|
# CONFIG_HID_NTRIG is not set
|
||||||
CONFIG_HID_PANTHERLORD=y
|
CONFIG_HID_PANTHERLORD=y
|
||||||
# CONFIG_PANTHERLORD_FF is not set
|
# CONFIG_PANTHERLORD_FF is not set
|
||||||
CONFIG_HID_PETALYNX=y
|
CONFIG_HID_PETALYNX=y
|
||||||
CONFIG_HID_SAMSUNG=y
|
CONFIG_HID_SAMSUNG=y
|
||||||
CONFIG_HID_SONY=y
|
CONFIG_HID_SONY=y
|
||||||
CONFIG_HID_SUNPLUS=y
|
CONFIG_HID_SUNPLUS=y
|
||||||
CONFIG_THRUSTMASTER_FF=m
|
# CONFIG_HID_GREENASIA is not set
|
||||||
CONFIG_ZEROPLUS_FF=m
|
# CONFIG_HID_SMARTJOYPLUS is not set
|
||||||
|
# CONFIG_HID_TOPSEED is not set
|
||||||
|
# CONFIG_HID_THRUSTMASTER is not set
|
||||||
|
# CONFIG_HID_ZEROPLUS is not set
|
||||||
CONFIG_USB_SUPPORT=y
|
CONFIG_USB_SUPPORT=y
|
||||||
CONFIG_USB_ARCH_HAS_HCD=y
|
CONFIG_USB_ARCH_HAS_HCD=y
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
|
@ -1172,6 +1221,7 @@ CONFIG_USB_MON=y
|
||||||
# USB Host Controller Drivers
|
# USB Host Controller Drivers
|
||||||
#
|
#
|
||||||
# CONFIG_USB_C67X00_HCD is not set
|
# CONFIG_USB_C67X00_HCD is not set
|
||||||
|
# CONFIG_USB_OXU210HP_HCD is not set
|
||||||
# CONFIG_USB_ISP116X_HCD is not set
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
# CONFIG_USB_ISP1760_HCD is not set
|
# CONFIG_USB_ISP1760_HCD is not set
|
||||||
# CONFIG_USB_ISP1362_HCD is not set
|
# CONFIG_USB_ISP1362_HCD is not set
|
||||||
|
@ -1188,9 +1238,7 @@ CONFIG_USB_MUSB_HOST=y
|
||||||
# CONFIG_USB_MUSB_PERIPHERAL is not set
|
# CONFIG_USB_MUSB_PERIPHERAL is not set
|
||||||
# CONFIG_USB_MUSB_OTG is not set
|
# CONFIG_USB_MUSB_OTG is not set
|
||||||
CONFIG_USB_MUSB_HDRC_HCD=y
|
CONFIG_USB_MUSB_HDRC_HCD=y
|
||||||
# CONFIG_MUSB_PIO_ONLY is not set
|
CONFIG_MUSB_PIO_ONLY=y
|
||||||
CONFIG_USB_INVENTRA_DMA=y
|
|
||||||
# CONFIG_USB_TI_CPPI_DMA is not set
|
|
||||||
# CONFIG_USB_MUSB_DEBUG is not set
|
# CONFIG_USB_MUSB_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1202,18 +1250,17 @@ CONFIG_USB_INVENTRA_DMA=y
|
||||||
# CONFIG_USB_TMC is not set
|
# CONFIG_USB_TMC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
|
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# see USB_STORAGE Help for more information
|
# also be needed; see USB_STORAGE Help for more info
|
||||||
#
|
#
|
||||||
CONFIG_USB_STORAGE=y
|
CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_STORAGE_DEBUG is not set
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
# CONFIG_USB_STORAGE_DATAFAB is not set
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
# CONFIG_USB_STORAGE_FREECOM is not set
|
# CONFIG_USB_STORAGE_FREECOM is not set
|
||||||
# CONFIG_USB_STORAGE_ISD200 is not set
|
# CONFIG_USB_STORAGE_ISD200 is not set
|
||||||
# CONFIG_USB_STORAGE_DPCM is not set
|
|
||||||
# CONFIG_USB_STORAGE_USBAT is not set
|
# CONFIG_USB_STORAGE_USBAT is not set
|
||||||
# CONFIG_USB_STORAGE_SDDR09 is not set
|
# CONFIG_USB_STORAGE_SDDR09 is not set
|
||||||
# CONFIG_USB_STORAGE_SDDR55 is not set
|
# CONFIG_USB_STORAGE_SDDR55 is not set
|
||||||
|
@ -1249,7 +1296,6 @@ CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_LED is not set
|
# CONFIG_USB_LED is not set
|
||||||
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
||||||
# CONFIG_USB_CYTHERM is not set
|
# CONFIG_USB_CYTHERM is not set
|
||||||
# CONFIG_USB_PHIDGET is not set
|
|
||||||
# CONFIG_USB_IDMOUSE is not set
|
# CONFIG_USB_IDMOUSE is not set
|
||||||
# CONFIG_USB_FTDI_ELAN is not set
|
# CONFIG_USB_FTDI_ELAN is not set
|
||||||
# CONFIG_USB_APPLEDISPLAY is not set
|
# CONFIG_USB_APPLEDISPLAY is not set
|
||||||
|
@ -1261,6 +1307,13 @@ CONFIG_USB_STORAGE=y
|
||||||
# CONFIG_USB_ISIGHTFW is not set
|
# CONFIG_USB_ISIGHTFW is not set
|
||||||
# CONFIG_USB_VST is not set
|
# CONFIG_USB_VST is not set
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# OTG and related infrastructure
|
||||||
|
#
|
||||||
|
CONFIG_USB_OTG_UTILS=y
|
||||||
|
# CONFIG_USB_GPIO_VBUS is not set
|
||||||
|
CONFIG_NOP_USB_XCEIV=y
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
@ -1296,6 +1349,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1307,6 +1361,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1327,9 +1382,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1340,9 +1406,13 @@ CONFIG_EXT2_FS=m
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1351,6 +1421,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1376,13 +1451,9 @@ CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1401,17 +1472,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1430,7 +1492,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1445,7 +1506,7 @@ CONFIG_SMB_FS=m
|
||||||
#
|
#
|
||||||
# CONFIG_PARTITION_ADVANCED is not set
|
# CONFIG_PARTITION_ADVANCED is not set
|
||||||
CONFIG_MSDOS_PARTITION=y
|
CONFIG_MSDOS_PARTITION=y
|
||||||
CONFIG_NLS=m
|
CONFIG_NLS=y
|
||||||
CONFIG_NLS_DEFAULT="iso8859-1"
|
CONFIG_NLS_DEFAULT="iso8859-1"
|
||||||
CONFIG_NLS_CODEPAGE_437=m
|
CONFIG_NLS_CODEPAGE_437=m
|
||||||
# CONFIG_NLS_CODEPAGE_737 is not set
|
# CONFIG_NLS_CODEPAGE_737 is not set
|
||||||
|
@ -1495,14 +1556,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1510,31 +1576,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1559,6 +1633,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1567,15 +1642,15 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
# CONFIG_SECURITY_ROOTPLUG is not set
|
# CONFIG_SECURITY_ROOTPLUG is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1607,11 +1682,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1648,6 +1725,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1655,11 +1733,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1669,6 +1749,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_BF533=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=3
|
CONFIG_BF_REV_MIN=3
|
||||||
|
@ -228,7 +256,7 @@ CONFIG_GENERIC_TIME=y
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
||||||
CONFIG_TICKSOURCE_CORETMR=y
|
CONFIG_TICKSOURCE_CORETMR=y
|
||||||
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
CONFIG_CYCLES_CLOCKSOURCE=y
|
||||||
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
# CONFIG_NO_HZ is not set
|
# CONFIG_NO_HZ is not set
|
||||||
|
@ -280,7 +308,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -289,19 +316,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Cache Support
|
|
||||||
#
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -312,7 +338,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -358,6 +384,7 @@ CONFIG_PM=y
|
||||||
CONFIG_PM_SLEEP=y
|
CONFIG_PM_SLEEP=y
|
||||||
CONFIG_SUSPEND=y
|
CONFIG_SUSPEND=y
|
||||||
CONFIG_SUSPEND_FREEZER=y
|
CONFIG_SUSPEND_FREEZER=y
|
||||||
|
# CONFIG_PM_RUNTIME is not set
|
||||||
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
||||||
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
||||||
# CONFIG_PM_BFIN_SLEEP is not set
|
# CONFIG_PM_BFIN_SLEEP is not set
|
||||||
|
@ -379,11 +406,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -407,7 +429,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -418,6 +439,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -431,7 +453,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -475,13 +500,8 @@ CONFIG_IRTTY_SIR=m
|
||||||
#
|
#
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -502,6 +522,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -559,6 +580,7 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -573,6 +595,11 @@ CONFIG_MTD_COMPLEX_MAPPINGS=y
|
||||||
# CONFIG_MTD_NAND is not set
|
# CONFIG_MTD_NAND is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -590,9 +617,14 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -616,9 +648,12 @@ CONFIG_NETDEVICES=y
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
CONFIG_SMC91X=y
|
CONFIG_SMC91X=y
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -627,15 +662,16 @@ CONFIG_SMC91X=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -679,15 +715,12 @@ CONFIG_INPUT_EVDEV=m
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=y
|
CONFIG_BFIN_SPORT=y
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
# CONFIG_DEVKMEM is not set
|
# CONFIG_DEVKMEM is not set
|
||||||
CONFIG_BFIN_JTAG_COMM=m
|
CONFIG_BFIN_JTAG_COMM=m
|
||||||
|
@ -701,6 +734,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -711,12 +745,8 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -734,13 +764,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -753,9 +788,6 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# I2C GPIO expanders:
|
# I2C GPIO expanders:
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -766,11 +798,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -793,23 +829,10 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -826,14 +849,12 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_SOUND is not set
|
# CONFIG_SOUND is not set
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=m
|
CONFIG_HID=m
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
# CONFIG_HID_PID is not set
|
# CONFIG_HID_PID is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
|
@ -864,6 +885,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -884,9 +906,19 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -896,9 +928,13 @@ CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -907,6 +943,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -926,13 +967,9 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -951,17 +988,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -980,7 +1008,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1045,14 +1072,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1060,31 +1092,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1109,6 +1149,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1117,14 +1158,14 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1156,11 +1197,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1197,6 +1240,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1204,11 +1248,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1218,6 +1264,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_BF533=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=3
|
CONFIG_BF_REV_MIN=3
|
||||||
|
@ -228,7 +256,7 @@ CONFIG_GENERIC_TIME=y
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
||||||
CONFIG_TICKSOURCE_CORETMR=y
|
CONFIG_TICKSOURCE_CORETMR=y
|
||||||
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
CONFIG_CYCLES_CLOCKSOURCE=y
|
||||||
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
# CONFIG_NO_HZ is not set
|
# CONFIG_NO_HZ is not set
|
||||||
|
@ -280,7 +308,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -289,16 +316,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -309,7 +338,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -355,6 +384,7 @@ CONFIG_PM=y
|
||||||
CONFIG_PM_SLEEP=y
|
CONFIG_PM_SLEEP=y
|
||||||
CONFIG_SUSPEND=y
|
CONFIG_SUSPEND=y
|
||||||
CONFIG_SUSPEND_FREEZER=y
|
CONFIG_SUSPEND_FREEZER=y
|
||||||
|
# CONFIG_PM_RUNTIME is not set
|
||||||
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
||||||
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
||||||
# CONFIG_PM_BFIN_SLEEP is not set
|
# CONFIG_PM_BFIN_SLEEP is not set
|
||||||
|
@ -376,11 +406,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -404,7 +429,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -415,6 +439,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -428,7 +453,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -474,13 +502,8 @@ CONFIG_SIR_BFIN_DMA=y
|
||||||
#
|
#
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -501,6 +524,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -560,6 +584,7 @@ CONFIG_MTD_BFIN_ASYNC=m
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -574,6 +599,11 @@ CONFIG_MTD_BFIN_ASYNC=m
|
||||||
# CONFIG_MTD_NAND is not set
|
# CONFIG_MTD_NAND is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -591,10 +621,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -618,9 +658,12 @@ CONFIG_NETDEVICES=y
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
CONFIG_SMC91X=y
|
CONFIG_SMC91X=y
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -629,15 +672,16 @@ CONFIG_SMC91X=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -672,7 +716,10 @@ CONFIG_INPUT_EVDEV=m
|
||||||
# CONFIG_INPUT_TOUCHSCREEN is not set
|
# CONFIG_INPUT_TOUCHSCREEN is not set
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
CONFIG_CONFIG_INPUT_PCF8574=m
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -683,16 +730,13 @@ CONFIG_CONFIG_INPUT_PCF8574=m
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=m
|
CONFIG_BFIN_SPORT=m
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
# CONFIG_DEVKMEM is not set
|
# CONFIG_DEVKMEM is not set
|
||||||
CONFIG_BFIN_JTAG_COMM=m
|
CONFIG_BFIN_JTAG_COMM=m
|
||||||
|
@ -706,6 +750,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -716,12 +761,8 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -729,6 +770,7 @@ CONFIG_UNIX98_PTYS=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -759,14 +801,6 @@ CONFIG_I2C_HELPER_AUTO=y
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -783,13 +817,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -805,6 +844,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -815,11 +855,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -841,26 +885,18 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_UCB1400_CORE is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -904,6 +940,7 @@ CONFIG_ADV7393_1XMEM=y
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
|
# CONFIG_FB_BROADSHEET is not set
|
||||||
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -913,19 +950,27 @@ CONFIG_ADV7393_1XMEM=y
|
||||||
# CONFIG_LOGO is not set
|
# CONFIG_LOGO is not set
|
||||||
CONFIG_SOUND=m
|
CONFIG_SOUND=m
|
||||||
CONFIG_SOUND_OSS_CORE=y
|
CONFIG_SOUND_OSS_CORE=y
|
||||||
|
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
||||||
CONFIG_SND=m
|
CONFIG_SND=m
|
||||||
CONFIG_SND_TIMER=m
|
CONFIG_SND_TIMER=m
|
||||||
CONFIG_SND_PCM=m
|
CONFIG_SND_PCM=m
|
||||||
|
CONFIG_SND_JACK=y
|
||||||
# CONFIG_SND_SEQUENCER is not set
|
# CONFIG_SND_SEQUENCER is not set
|
||||||
CONFIG_SND_OSSEMUL=y
|
CONFIG_SND_OSSEMUL=y
|
||||||
CONFIG_SND_MIXER_OSS=m
|
CONFIG_SND_MIXER_OSS=m
|
||||||
CONFIG_SND_PCM_OSS=m
|
CONFIG_SND_PCM_OSS=m
|
||||||
CONFIG_SND_PCM_OSS_PLUGINS=y
|
CONFIG_SND_PCM_OSS_PLUGINS=y
|
||||||
|
# CONFIG_SND_HRTIMER is not set
|
||||||
# CONFIG_SND_DYNAMIC_MINORS is not set
|
# CONFIG_SND_DYNAMIC_MINORS is not set
|
||||||
CONFIG_SND_SUPPORT_OLD_API=y
|
CONFIG_SND_SUPPORT_OLD_API=y
|
||||||
CONFIG_SND_VERBOSE_PROCFS=y
|
CONFIG_SND_VERBOSE_PROCFS=y
|
||||||
# CONFIG_SND_VERBOSE_PRINTK is not set
|
# CONFIG_SND_VERBOSE_PRINTK is not set
|
||||||
# CONFIG_SND_DEBUG is not set
|
# CONFIG_SND_DEBUG is not set
|
||||||
|
# CONFIG_SND_RAWMIDI_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL3_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
CONFIG_SND_DRIVERS=y
|
CONFIG_SND_DRIVERS=y
|
||||||
# CONFIG_SND_DUMMY is not set
|
# CONFIG_SND_DUMMY is not set
|
||||||
# CONFIG_SND_MTPAV is not set
|
# CONFIG_SND_MTPAV is not set
|
||||||
|
@ -936,13 +981,6 @@ CONFIG_SND_SPI=y
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
CONFIG_SND_BLACKFIN_AD1836=m
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_TDM=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_I2S is not set
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_MULSUB=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_5P1 is not set
|
|
||||||
CONFIG_SND_BLACKFIN_SPORT=0
|
|
||||||
CONFIG_SND_BLACKFIN_SPI_PFBIT=4
|
|
||||||
CONFIG_SND_BFIN_SPORT=0
|
CONFIG_SND_BFIN_SPORT=0
|
||||||
CONFIG_SND_BFIN_AD73322=m
|
CONFIG_SND_BFIN_AD73322=m
|
||||||
CONFIG_SND_BFIN_AD73322_SPORT0_SE=10
|
CONFIG_SND_BFIN_AD73322_SPORT0_SE=10
|
||||||
|
@ -953,16 +991,20 @@ CONFIG_SND_SOC_AC97_BUS=y
|
||||||
CONFIG_SND_BF5XX_I2S=m
|
CONFIG_SND_BF5XX_I2S=m
|
||||||
# CONFIG_SND_BF5XX_SOC_SSM2602 is not set
|
# CONFIG_SND_BF5XX_SOC_SSM2602 is not set
|
||||||
CONFIG_SND_BF5XX_SOC_AD73311=m
|
CONFIG_SND_BF5XX_SOC_AD73311=m
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1371 is not set
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1761 is not set
|
||||||
CONFIG_SND_BFIN_AD73311_SE=4
|
CONFIG_SND_BFIN_AD73311_SE=4
|
||||||
|
# CONFIG_SND_BF5XX_TDM is not set
|
||||||
CONFIG_SND_BF5XX_AC97=m
|
CONFIG_SND_BF5XX_AC97=m
|
||||||
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
||||||
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
||||||
|
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
||||||
|
CONFIG_SND_BF5XX_SOC_AD1980=m
|
||||||
CONFIG_SND_BF5XX_SOC_SPORT=m
|
CONFIG_SND_BF5XX_SOC_SPORT=m
|
||||||
CONFIG_SND_BF5XX_SOC_I2S=m
|
CONFIG_SND_BF5XX_SOC_I2S=m
|
||||||
CONFIG_SND_BF5XX_SOC_AC97=m
|
CONFIG_SND_BF5XX_SOC_AC97=m
|
||||||
CONFIG_SND_BF5XX_SOC_AD1980=m
|
|
||||||
CONFIG_SND_BF5XX_SPORT_NUM=0
|
CONFIG_SND_BF5XX_SPORT_NUM=0
|
||||||
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
CONFIG_SND_SOC_I2C_AND_SPI=m
|
||||||
# CONFIG_SND_SOC_ALL_CODECS is not set
|
# CONFIG_SND_SOC_ALL_CODECS is not set
|
||||||
CONFIG_SND_SOC_AD1980=m
|
CONFIG_SND_SOC_AD1980=m
|
||||||
CONFIG_SND_SOC_AD73311=m
|
CONFIG_SND_SOC_AD73311=m
|
||||||
|
@ -970,14 +1012,12 @@ CONFIG_SND_SOC_AD73311=m
|
||||||
CONFIG_AC97_BUS=m
|
CONFIG_AC97_BUS=m
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
# CONFIG_HID_PID is not set
|
# CONFIG_HID_PID is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
|
@ -1014,6 +1054,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1025,6 +1066,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1045,9 +1087,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1057,9 +1110,13 @@ CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1068,6 +1125,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1087,13 +1149,9 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1112,17 +1170,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1141,7 +1190,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1206,14 +1254,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1221,31 +1274,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1270,6 +1331,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1278,14 +1340,14 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1317,11 +1379,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1358,6 +1422,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1365,11 +1430,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1379,6 +1446,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_FREEZER=y
|
||||||
CONFIG_BF537=y
|
CONFIG_BF537=y
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=2
|
CONFIG_BF_REV_MIN=2
|
||||||
|
@ -184,7 +212,8 @@ CONFIG_IRQ_MEM_DMA1=13
|
||||||
CONFIG_IRQ_WATCH=13
|
CONFIG_IRQ_WATCH=13
|
||||||
CONFIG_IRQ_SPI=10
|
CONFIG_IRQ_SPI=10
|
||||||
CONFIG_BFIN537_STAMP=y
|
CONFIG_BFIN537_STAMP=y
|
||||||
# CONFIG_BFIN537_BLUETECHNIX_CM is not set
|
# CONFIG_BFIN537_BLUETECHNIX_CM_E is not set
|
||||||
|
# CONFIG_BFIN537_BLUETECHNIX_CM_U is not set
|
||||||
# CONFIG_BFIN537_BLUETECHNIX_TCM is not set
|
# CONFIG_BFIN537_BLUETECHNIX_TCM is not set
|
||||||
# CONFIG_PNAV10 is not set
|
# CONFIG_PNAV10 is not set
|
||||||
# CONFIG_CAMSIG_MINOTAUR is not set
|
# CONFIG_CAMSIG_MINOTAUR is not set
|
||||||
|
@ -235,7 +264,7 @@ CONFIG_GENERIC_TIME=y
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
||||||
CONFIG_TICKSOURCE_CORETMR=y
|
CONFIG_TICKSOURCE_CORETMR=y
|
||||||
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
CONFIG_CYCLES_CLOCKSOURCE=y
|
||||||
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
# CONFIG_NO_HZ is not set
|
# CONFIG_NO_HZ is not set
|
||||||
|
@ -287,7 +316,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -296,16 +324,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -316,7 +346,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -362,6 +392,7 @@ CONFIG_PM=y
|
||||||
CONFIG_PM_SLEEP=y
|
CONFIG_PM_SLEEP=y
|
||||||
CONFIG_SUSPEND=y
|
CONFIG_SUSPEND=y
|
||||||
CONFIG_SUSPEND_FREEZER=y
|
CONFIG_SUSPEND_FREEZER=y
|
||||||
|
# CONFIG_PM_RUNTIME is not set
|
||||||
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
CONFIG_ARCH_SUSPEND_POSSIBLE=y
|
||||||
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
CONFIG_PM_BFIN_SLEEP_DEEPER=y
|
||||||
# CONFIG_PM_BFIN_SLEEP is not set
|
# CONFIG_PM_BFIN_SLEEP is not set
|
||||||
|
@ -384,11 +415,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -412,7 +438,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -423,6 +448,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -436,14 +462,34 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
#
|
#
|
||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
# CONFIG_CAN is not set
|
CONFIG_CAN=m
|
||||||
|
CONFIG_CAN_RAW=m
|
||||||
|
CONFIG_CAN_BCM=m
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN Device Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_VCAN is not set
|
||||||
|
CONFIG_CAN_DEV=m
|
||||||
|
# CONFIG_CAN_CALC_BITTIMING is not set
|
||||||
|
CONFIG_CAN_BFIN=m
|
||||||
|
# CONFIG_CAN_SJA1000 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN USB interfaces
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_EMS_USB is not set
|
||||||
|
# CONFIG_CAN_DEBUG_DEVICES is not set
|
||||||
CONFIG_IRDA=m
|
CONFIG_IRDA=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -483,13 +529,8 @@ CONFIG_SIR_BFIN_DMA=y
|
||||||
#
|
#
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -510,6 +551,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -568,6 +610,7 @@ CONFIG_MTD_PHYSMAP=m
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -582,6 +625,11 @@ CONFIG_MTD_PHYSMAP=m
|
||||||
# CONFIG_MTD_NAND is not set
|
# CONFIG_MTD_NAND is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -599,10 +647,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -637,6 +695,9 @@ CONFIG_SMSC_PHY=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
|
@ -647,9 +708,12 @@ CONFIG_BFIN_TX_DESC_NUM=10
|
||||||
CONFIG_BFIN_RX_DESC_NUM=20
|
CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
# CONFIG_BFIN_MAC_RMII is not set
|
# CONFIG_BFIN_MAC_RMII is not set
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -658,15 +722,16 @@ CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -701,7 +766,10 @@ CONFIG_INPUT_EVDEV=m
|
||||||
# CONFIG_INPUT_TOUCHSCREEN is not set
|
# CONFIG_INPUT_TOUCHSCREEN is not set
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
CONFIG_CONFIG_INPUT_PCF8574=m
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -712,16 +780,13 @@ CONFIG_CONFIG_INPUT_PCF8574=m
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=m
|
CONFIG_BFIN_SPORT=m
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
# CONFIG_DEVKMEM is not set
|
# CONFIG_DEVKMEM is not set
|
||||||
CONFIG_BFIN_JTAG_COMM=m
|
CONFIG_BFIN_JTAG_COMM=m
|
||||||
|
@ -735,6 +800,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -746,17 +812,8 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
CONFIG_CAN4LINUX=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# linux embedded drivers
|
|
||||||
#
|
|
||||||
CONFIG_CAN_BLACKFIN=m
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -764,6 +821,7 @@ CONFIG_CAN_BLACKFIN=m
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -796,14 +854,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
CONFIG_SENSORS_AD5252=m
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -820,13 +870,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -842,6 +897,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -852,11 +908,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -878,26 +938,18 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_UCB1400_CORE is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -929,9 +981,6 @@ CONFIG_FB_CFB_IMAGEBLIT=m
|
||||||
# CONFIG_FB_BFIN_T350MCQB is not set
|
# CONFIG_FB_BFIN_T350MCQB is not set
|
||||||
# CONFIG_FB_BFIN_LQ035Q1 is not set
|
# CONFIG_FB_BFIN_LQ035Q1 is not set
|
||||||
CONFIG_FB_BF537_LQ035=m
|
CONFIG_FB_BF537_LQ035=m
|
||||||
CONFIG_LQ035_SLAVE_ADDR=0x58
|
|
||||||
# CONFIG_FB_BFIN_LANDSCAPE is not set
|
|
||||||
# CONFIG_FB_BFIN_BGR is not set
|
|
||||||
CONFIG_FB_BFIN_7393=m
|
CONFIG_FB_BFIN_7393=m
|
||||||
CONFIG_NTSC=y
|
CONFIG_NTSC=y
|
||||||
# CONFIG_PAL is not set
|
# CONFIG_PAL is not set
|
||||||
|
@ -946,15 +995,18 @@ CONFIG_ADV7393_1XMEM=y
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
|
# CONFIG_FB_BROADSHEET is not set
|
||||||
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
||||||
CONFIG_LCD_CLASS_DEVICE=m
|
CONFIG_LCD_CLASS_DEVICE=m
|
||||||
|
# CONFIG_LCD_LMS283GF05 is not set
|
||||||
# CONFIG_LCD_LTV350QV is not set
|
# CONFIG_LCD_LTV350QV is not set
|
||||||
# CONFIG_LCD_ILI9320 is not set
|
# CONFIG_LCD_ILI9320 is not set
|
||||||
# CONFIG_LCD_TDO24M is not set
|
# CONFIG_LCD_TDO24M is not set
|
||||||
# CONFIG_LCD_VGG2432A4 is not set
|
# CONFIG_LCD_VGG2432A4 is not set
|
||||||
# CONFIG_LCD_PLATFORM is not set
|
# CONFIG_LCD_PLATFORM is not set
|
||||||
CONFIG_BACKLIGHT_CLASS_DEVICE=m
|
CONFIG_BACKLIGHT_CLASS_DEVICE=m
|
||||||
CONFIG_BACKLIGHT_CORGI=m
|
CONFIG_BACKLIGHT_GENERIC=m
|
||||||
|
# CONFIG_BACKLIGHT_ADP8870 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Display device support
|
# Display device support
|
||||||
|
@ -963,19 +1015,27 @@ CONFIG_BACKLIGHT_CORGI=m
|
||||||
# CONFIG_LOGO is not set
|
# CONFIG_LOGO is not set
|
||||||
CONFIG_SOUND=m
|
CONFIG_SOUND=m
|
||||||
CONFIG_SOUND_OSS_CORE=y
|
CONFIG_SOUND_OSS_CORE=y
|
||||||
|
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
||||||
CONFIG_SND=m
|
CONFIG_SND=m
|
||||||
CONFIG_SND_TIMER=m
|
CONFIG_SND_TIMER=m
|
||||||
CONFIG_SND_PCM=m
|
CONFIG_SND_PCM=m
|
||||||
|
CONFIG_SND_JACK=y
|
||||||
# CONFIG_SND_SEQUENCER is not set
|
# CONFIG_SND_SEQUENCER is not set
|
||||||
CONFIG_SND_OSSEMUL=y
|
CONFIG_SND_OSSEMUL=y
|
||||||
CONFIG_SND_MIXER_OSS=m
|
CONFIG_SND_MIXER_OSS=m
|
||||||
CONFIG_SND_PCM_OSS=m
|
CONFIG_SND_PCM_OSS=m
|
||||||
CONFIG_SND_PCM_OSS_PLUGINS=y
|
CONFIG_SND_PCM_OSS_PLUGINS=y
|
||||||
|
# CONFIG_SND_HRTIMER is not set
|
||||||
# CONFIG_SND_DYNAMIC_MINORS is not set
|
# CONFIG_SND_DYNAMIC_MINORS is not set
|
||||||
CONFIG_SND_SUPPORT_OLD_API=y
|
CONFIG_SND_SUPPORT_OLD_API=y
|
||||||
CONFIG_SND_VERBOSE_PROCFS=y
|
CONFIG_SND_VERBOSE_PROCFS=y
|
||||||
# CONFIG_SND_VERBOSE_PRINTK is not set
|
# CONFIG_SND_VERBOSE_PRINTK is not set
|
||||||
# CONFIG_SND_DEBUG is not set
|
# CONFIG_SND_DEBUG is not set
|
||||||
|
# CONFIG_SND_RAWMIDI_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL3_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
CONFIG_SND_DRIVERS=y
|
CONFIG_SND_DRIVERS=y
|
||||||
# CONFIG_SND_DUMMY is not set
|
# CONFIG_SND_DUMMY is not set
|
||||||
# CONFIG_SND_MTPAV is not set
|
# CONFIG_SND_MTPAV is not set
|
||||||
|
@ -986,13 +1046,6 @@ CONFIG_SND_SPI=y
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
CONFIG_SND_BLACKFIN_AD1836=m
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_TDM=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_I2S is not set
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_MULSUB=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_5P1 is not set
|
|
||||||
CONFIG_SND_BLACKFIN_SPORT=0
|
|
||||||
CONFIG_SND_BLACKFIN_SPI_PFBIT=4
|
|
||||||
CONFIG_SND_BFIN_SPORT=0
|
CONFIG_SND_BFIN_SPORT=0
|
||||||
CONFIG_SND_BFIN_AD73322=m
|
CONFIG_SND_BFIN_AD73322=m
|
||||||
CONFIG_SND_BFIN_AD73322_SPORT0_SE=10
|
CONFIG_SND_BFIN_AD73322_SPORT0_SE=10
|
||||||
|
@ -1003,16 +1056,20 @@ CONFIG_SND_SOC_AC97_BUS=y
|
||||||
CONFIG_SND_BF5XX_I2S=m
|
CONFIG_SND_BF5XX_I2S=m
|
||||||
# CONFIG_SND_BF5XX_SOC_SSM2602 is not set
|
# CONFIG_SND_BF5XX_SOC_SSM2602 is not set
|
||||||
CONFIG_SND_BF5XX_SOC_AD73311=m
|
CONFIG_SND_BF5XX_SOC_AD73311=m
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1371 is not set
|
||||||
|
# CONFIG_SND_BF5XX_SOC_ADAU1761 is not set
|
||||||
CONFIG_SND_BFIN_AD73311_SE=4
|
CONFIG_SND_BFIN_AD73311_SE=4
|
||||||
|
# CONFIG_SND_BF5XX_TDM is not set
|
||||||
CONFIG_SND_BF5XX_AC97=m
|
CONFIG_SND_BF5XX_AC97=m
|
||||||
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
CONFIG_SND_BF5XX_MMAP_SUPPORT=y
|
||||||
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
# CONFIG_SND_BF5XX_MULTICHAN_SUPPORT is not set
|
||||||
|
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
||||||
|
CONFIG_SND_BF5XX_SOC_AD1980=m
|
||||||
CONFIG_SND_BF5XX_SOC_SPORT=m
|
CONFIG_SND_BF5XX_SOC_SPORT=m
|
||||||
CONFIG_SND_BF5XX_SOC_I2S=m
|
CONFIG_SND_BF5XX_SOC_I2S=m
|
||||||
CONFIG_SND_BF5XX_SOC_AC97=m
|
CONFIG_SND_BF5XX_SOC_AC97=m
|
||||||
CONFIG_SND_BF5XX_SOC_AD1980=m
|
|
||||||
CONFIG_SND_BF5XX_SPORT_NUM=0
|
CONFIG_SND_BF5XX_SPORT_NUM=0
|
||||||
# CONFIG_SND_BF5XX_HAVE_COLD_RESET is not set
|
CONFIG_SND_SOC_I2C_AND_SPI=m
|
||||||
# CONFIG_SND_SOC_ALL_CODECS is not set
|
# CONFIG_SND_SOC_ALL_CODECS is not set
|
||||||
CONFIG_SND_SOC_AD1980=m
|
CONFIG_SND_SOC_AD1980=m
|
||||||
CONFIG_SND_SOC_AD73311=m
|
CONFIG_SND_SOC_AD73311=m
|
||||||
|
@ -1020,14 +1077,12 @@ CONFIG_SND_SOC_AD73311=m
|
||||||
CONFIG_AC97_BUS=m
|
CONFIG_AC97_BUS=m
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
# CONFIG_HID_PID is not set
|
# CONFIG_HID_PID is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
|
@ -1064,6 +1119,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1075,6 +1131,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1095,9 +1152,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1107,9 +1175,13 @@ CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1118,6 +1190,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1137,13 +1214,9 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1162,17 +1235,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1191,7 +1255,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1256,14 +1319,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1271,31 +1339,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1320,6 +1396,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1328,14 +1405,14 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1367,11 +1444,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1408,6 +1487,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1415,11 +1495,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1429,6 +1511,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,22 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
# Thu May 21 05:50:01 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -26,22 +31,41 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
|
CONFIG_RD_GZIP=y
|
||||||
|
# CONFIG_RD_BZIP2 is not set
|
||||||
|
# CONFIG_RD_LZMA is not set
|
||||||
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
|
@ -62,6 +86,10 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_TIMERFD is not set
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -69,11 +97,15 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -81,11 +113,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -101,7 +130,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -132,15 +160,15 @@ CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
CONFIG_BF538=y
|
CONFIG_BF538=y
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=4
|
CONFIG_BF_REV_MIN=4
|
||||||
|
@ -246,7 +274,7 @@ CONFIG_GENERIC_TIME=y
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
||||||
CONFIG_TICKSOURCE_CORETMR=y
|
CONFIG_TICKSOURCE_CORETMR=y
|
||||||
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
CONFIG_CYCLES_CLOCKSOURCE=y
|
||||||
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
# CONFIG_NO_HZ is not set
|
# CONFIG_NO_HZ is not set
|
||||||
|
@ -298,7 +326,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -307,16 +334,18 @@ CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -327,7 +356,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -383,11 +412,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -411,7 +435,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -422,6 +445,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -435,14 +459,34 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
#
|
#
|
||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
# CONFIG_CAN is not set
|
CONFIG_CAN=m
|
||||||
|
CONFIG_CAN_RAW=m
|
||||||
|
CONFIG_CAN_BCM=m
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN Device Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_VCAN is not set
|
||||||
|
CONFIG_CAN_DEV=m
|
||||||
|
# CONFIG_CAN_CALC_BITTIMING is not set
|
||||||
|
CONFIG_CAN_BFIN=m
|
||||||
|
# CONFIG_CAN_SJA1000 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN USB interfaces
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_EMS_USB is not set
|
||||||
|
# CONFIG_CAN_DEBUG_DEVICES is not set
|
||||||
CONFIG_IRDA=m
|
CONFIG_IRDA=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -481,13 +525,8 @@ CONFIG_SIR_BFIN_DMA=y
|
||||||
#
|
#
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -508,6 +547,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -566,6 +606,7 @@ CONFIG_MTD_PHYSMAP=m
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -581,17 +622,17 @@ CONFIG_MTD_NAND=m
|
||||||
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
||||||
# CONFIG_MTD_NAND_ECC_SMC is not set
|
# CONFIG_MTD_NAND_ECC_SMC is not set
|
||||||
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
||||||
CONFIG_MTD_NAND_BFIN=m
|
|
||||||
CONFIG_BFIN_NAND_BASE=0x20212000
|
|
||||||
CONFIG_BFIN_NAND_CLE=2
|
|
||||||
CONFIG_BFIN_NAND_ALE=1
|
|
||||||
CONFIG_BFIN_NAND_READY=3
|
|
||||||
CONFIG_MTD_NAND_IDS=m
|
CONFIG_MTD_NAND_IDS=m
|
||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
# CONFIG_MTD_NAND_NANDSIM is not set
|
# CONFIG_MTD_NAND_NANDSIM is not set
|
||||||
# CONFIG_MTD_NAND_PLATFORM is not set
|
# CONFIG_MTD_NAND_PLATFORM is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -643,14 +684,20 @@ CONFIG_SMSC_PHY=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
CONFIG_SMC91X=y
|
CONFIG_SMC91X=y
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -659,15 +706,16 @@ CONFIG_SMC91X=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -700,14 +748,17 @@ CONFIG_INPUT_EVDEV=m
|
||||||
# CONFIG_INPUT_JOYSTICK is not set
|
# CONFIG_INPUT_JOYSTICK is not set
|
||||||
# CONFIG_INPUT_TABLET is not set
|
# CONFIG_INPUT_TABLET is not set
|
||||||
CONFIG_INPUT_TOUCHSCREEN=y
|
CONFIG_INPUT_TOUCHSCREEN=y
|
||||||
|
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
||||||
# CONFIG_TOUCHSCREEN_AD7877 is not set
|
# CONFIG_TOUCHSCREEN_AD7877 is not set
|
||||||
# CONFIG_TOUCHSCREEN_AD7879_I2C is not set
|
# CONFIG_TOUCHSCREEN_AD7879_I2C is not set
|
||||||
CONFIG_TOUCHSCREEN_AD7879_SPI=y
|
CONFIG_TOUCHSCREEN_AD7879_SPI=y
|
||||||
CONFIG_TOUCHSCREEN_AD7879=y
|
CONFIG_TOUCHSCREEN_AD7879=y
|
||||||
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
# CONFIG_TOUCHSCREEN_EETI is not set
|
||||||
# CONFIG_TOUCHSCREEN_FUJITSU is not set
|
# CONFIG_TOUCHSCREEN_FUJITSU is not set
|
||||||
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
||||||
# CONFIG_TOUCHSCREEN_ELO is not set
|
# CONFIG_TOUCHSCREEN_ELO is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_MCS5000 is not set
|
||||||
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
||||||
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
||||||
# CONFIG_TOUCHSCREEN_MK712 is not set
|
# CONFIG_TOUCHSCREEN_MK712 is not set
|
||||||
|
@ -715,9 +766,13 @@ CONFIG_TOUCHSCREEN_AD7879=y
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
|
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
|
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_TSC2007 is not set
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_UINPUT is not set
|
# CONFIG_INPUT_UINPUT is not set
|
||||||
# CONFIG_CONFIG_INPUT_PCF8574 is not set
|
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
|
||||||
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -728,16 +783,13 @@ CONFIG_INPUT_MISC=y
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=m
|
CONFIG_BFIN_SPORT=m
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
CONFIG_SIMPLE_GPIO=m
|
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
# CONFIG_DEVKMEM is not set
|
# CONFIG_DEVKMEM is not set
|
||||||
CONFIG_BFIN_JTAG_COMM=m
|
CONFIG_BFIN_JTAG_COMM=m
|
||||||
|
@ -751,6 +803,7 @@ CONFIG_BFIN_JTAG_COMM=m
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -765,12 +818,8 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -778,6 +827,7 @@ CONFIG_UNIX98_PTYS=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
# CONFIG_I2C_CHARDEV is not set
|
# CONFIG_I2C_CHARDEV is not set
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -810,14 +860,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -834,13 +876,18 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
# CONFIG_DEBUG_GPIO is not set
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
@ -856,6 +903,7 @@ CONFIG_GPIO_SYSFS=y
|
||||||
# CONFIG_GPIO_MAX732X is not set
|
# CONFIG_GPIO_MAX732X is not set
|
||||||
# CONFIG_GPIO_PCA953X is not set
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
# CONFIG_GPIO_PCF857X is not set
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI GPIO expanders:
|
# PCI GPIO expanders:
|
||||||
|
@ -866,11 +914,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -892,26 +944,17 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
# CONFIG_DAB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -947,6 +990,7 @@ CONFIG_FB_BFIN_LQ035Q1=m
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
|
# CONFIG_FB_BROADSHEET is not set
|
||||||
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -957,14 +1001,12 @@ CONFIG_FB_BFIN_LQ035Q1=m
|
||||||
# CONFIG_SOUND is not set
|
# CONFIG_SOUND is not set
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
# CONFIG_HID_PID is not set
|
# CONFIG_HID_PID is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
|
||||||
# CONFIG_USB_SUPPORT is not set
|
# CONFIG_USB_SUPPORT is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
|
@ -1001,6 +1043,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1012,6 +1055,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1032,9 +1076,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1044,9 +1099,13 @@ CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1055,6 +1114,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1074,13 +1138,9 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1099,17 +1159,8 @@ CONFIG_JFFS2_ZLIB=y
|
||||||
# CONFIG_JFFS2_LZO is not set
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
CONFIG_YAFFS_FS=m
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1128,7 +1179,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1193,14 +1243,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
CONFIG_DEBUG_KERNEL=y
|
CONFIG_DEBUG_KERNEL=y
|
||||||
CONFIG_DEBUG_SHIRQ=y
|
CONFIG_DEBUG_SHIRQ=y
|
||||||
CONFIG_DETECT_SOFTLOCKUP=y
|
CONFIG_DETECT_SOFTLOCKUP=y
|
||||||
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
|
||||||
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
|
||||||
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
|
||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
@ -1208,31 +1263,39 @@ CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_DEBUG_SLAB is not set
|
# CONFIG_DEBUG_SLAB is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
# CONFIG_DEBUG_MUTEXES is not set
|
||||||
|
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
||||||
|
# CONFIG_PROVE_LOCKING is not set
|
||||||
|
# CONFIG_LOCK_STAT is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
CONFIG_DEBUG_INFO=y
|
CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_NOMMU_REGIONS is not set
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
|
# CONFIG_PAGE_POISONING is not set
|
||||||
#
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
# Tracers
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
#
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SCHED_TRACER is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_CONTEXT_SWITCH_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_BOOT_TRACER is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
|
@ -1257,6 +1320,7 @@ CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE=y
|
||||||
CONFIG_EARLY_PRINTK=y
|
CONFIG_EARLY_PRINTK=y
|
||||||
CONFIG_CPLB_INFO=y
|
CONFIG_CPLB_INFO=y
|
||||||
CONFIG_ACCESS_CHECK=y
|
CONFIG_ACCESS_CHECK=y
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1265,14 +1329,14 @@ CONFIG_ACCESS_CHECK=y
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1304,11 +1368,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1345,6 +1411,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1352,11 +1419,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1366,6 +1435,8 @@ CONFIG_CRC32=y
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
CONFIG_DECOMPRESS_GZIP=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.31.5
|
# Linux kernel version: 2.6.32.2
|
||||||
# Mon Nov 2 22:02:56 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
|
@ -12,7 +11,6 @@ CONFIG_GENERIC_CSUM=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
|
@ -49,11 +47,12 @@ CONFIG_SYSVIPC_SYSCTL=y
|
||||||
#
|
#
|
||||||
# RCU Subsystem
|
# RCU Subsystem
|
||||||
#
|
#
|
||||||
CONFIG_CLASSIC_RCU=y
|
CONFIG_TREE_RCU=y
|
||||||
# CONFIG_TREE_RCU is not set
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
# CONFIG_PREEMPT_RCU is not set
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
# CONFIG_TREE_RCU_TRACE is not set
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
# CONFIG_PREEMPT_RCU_TRACE is not set
|
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
|
@ -89,24 +88,23 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Performance Counters
|
# Kernel Performance Events And Counters
|
||||||
#
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
# CONFIG_STRIP_ASM_SYMS is not set
|
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
# CONFIG_SLUB is not set
|
# CONFIG_SLUB is not set
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# GCOV-based kernel profiling
|
# GCOV-based kernel profiling
|
||||||
#
|
#
|
||||||
# CONFIG_GCOV_KERNEL is not set
|
# CONFIG_GCOV_KERNEL is not set
|
||||||
# CONFIG_SLOW_WORK is not set
|
CONFIG_SLOW_WORK=y
|
||||||
|
# CONFIG_SLOW_WORK_DEBUG is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
|
@ -163,15 +161,15 @@ CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
CONFIG_BF548_std=y
|
CONFIG_BF548_std=y
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=0
|
CONFIG_BF_REV_MIN=0
|
||||||
|
@ -185,7 +183,6 @@ CONFIG_BF_REV_0_2=y
|
||||||
# CONFIG_BF_REV_0_6 is not set
|
# CONFIG_BF_REV_0_6 is not set
|
||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF54x=y
|
|
||||||
CONFIG_IRQ_PLL_WAKEUP=7
|
CONFIG_IRQ_PLL_WAKEUP=7
|
||||||
CONFIG_IRQ_RTC=8
|
CONFIG_IRQ_RTC=8
|
||||||
CONFIG_IRQ_SPORT0_RX=9
|
CONFIG_IRQ_SPORT0_RX=9
|
||||||
|
@ -221,6 +218,8 @@ CONFIG_IRQ_SPI1=10
|
||||||
CONFIG_IRQ_SPI2=10
|
CONFIG_IRQ_SPI2=10
|
||||||
CONFIG_IRQ_TWI0=11
|
CONFIG_IRQ_TWI0=11
|
||||||
CONFIG_IRQ_TWI1=11
|
CONFIG_IRQ_TWI1=11
|
||||||
|
CONFIG_BF548=y
|
||||||
|
CONFIG_BF54x=y
|
||||||
CONFIG_BFIN548_EZKIT=y
|
CONFIG_BFIN548_EZKIT=y
|
||||||
# CONFIG_BFIN548_BLUETECHNIX_CM is not set
|
# CONFIG_BFIN548_BLUETECHNIX_CM is not set
|
||||||
|
|
||||||
|
@ -387,12 +386,14 @@ CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
|
|
||||||
CONFIG_NOMMU_INITIAL_TRIM_EXCESS=0
|
CONFIG_NOMMU_INITIAL_TRIM_EXCESS=0
|
||||||
CONFIG_BFIN_GPTIMERS=m
|
CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
CONFIG_DMA_UNCACHED_2M=y
|
CONFIG_DMA_UNCACHED_2M=y
|
||||||
# CONFIG_DMA_UNCACHED_1M is not set
|
# CONFIG_DMA_UNCACHED_1M is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -505,6 +506,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -528,7 +530,24 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
#
|
#
|
||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
# CONFIG_CAN is not set
|
CONFIG_CAN=m
|
||||||
|
CONFIG_CAN_RAW=m
|
||||||
|
CONFIG_CAN_BCM=m
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN Device Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_VCAN is not set
|
||||||
|
CONFIG_CAN_DEV=m
|
||||||
|
# CONFIG_CAN_CALC_BITTIMING is not set
|
||||||
|
CONFIG_CAN_BFIN=m
|
||||||
|
# CONFIG_CAN_SJA1000 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# CAN USB interfaces
|
||||||
|
#
|
||||||
|
# CONFIG_CAN_EMS_USB is not set
|
||||||
|
# CONFIG_CAN_DEBUG_DEVICES is not set
|
||||||
CONFIG_IRDA=m
|
CONFIG_IRDA=m
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -663,6 +682,7 @@ CONFIG_MTD_PHYSMAP=y
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
CONFIG_MTD_M25P80=y
|
CONFIG_MTD_M25P80=y
|
||||||
CONFIG_M25PXX_USE_FAST_READ=y
|
CONFIG_M25PXX_USE_FAST_READ=y
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -711,10 +731,10 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
# CONFIG_ISL29003 is not set
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_AD525X_DPOT is not set
|
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -767,7 +787,8 @@ CONFIG_SCSI_WAIT_SCAN=m
|
||||||
# CONFIG_SCSI_OSD_INITIATOR is not set
|
# CONFIG_SCSI_OSD_INITIATOR is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
# CONFIG_ATA_NONSTANDARD is not set
|
# CONFIG_ATA_NONSTANDARD is not set
|
||||||
CONFIG_SATA_PMP=y
|
CONFIG_ATA_VERBOSE_ERROR=y
|
||||||
|
# CONFIG_SATA_PMP is not set
|
||||||
CONFIG_ATA_SFF=y
|
CONFIG_ATA_SFF=y
|
||||||
# CONFIG_SATA_MV is not set
|
# CONFIG_SATA_MV is not set
|
||||||
# CONFIG_PATA_PLATFORM is not set
|
# CONFIG_PATA_PLATFORM is not set
|
||||||
|
@ -808,6 +829,7 @@ CONFIG_MII=y
|
||||||
# CONFIG_ETHOC is not set
|
# CONFIG_ETHOC is not set
|
||||||
CONFIG_SMSC911X=y
|
CONFIG_SMSC911X=y
|
||||||
# CONFIG_DNET is not set
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -818,12 +840,10 @@ CONFIG_SMSC911X=y
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
# CONFIG_KS8842 is not set
|
# CONFIG_KS8842 is not set
|
||||||
# CONFIG_KS8851 is not set
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
CONFIG_WLAN=y
|
||||||
#
|
|
||||||
# Wireless LAN
|
|
||||||
#
|
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
CONFIG_WLAN_80211=y
|
CONFIG_WLAN_80211=y
|
||||||
CONFIG_LIBERTAS=m
|
CONFIG_LIBERTAS=m
|
||||||
|
@ -877,10 +897,12 @@ CONFIG_INPUT_EVBUG=m
|
||||||
CONFIG_INPUT_KEYBOARD=y
|
CONFIG_INPUT_KEYBOARD=y
|
||||||
# CONFIG_KEYBOARD_ADP5588 is not set
|
# CONFIG_KEYBOARD_ADP5588 is not set
|
||||||
# CONFIG_KEYBOARD_ATKBD is not set
|
# CONFIG_KEYBOARD_ATKBD is not set
|
||||||
|
# CONFIG_QT2160 is not set
|
||||||
CONFIG_KEYBOARD_BFIN=y
|
CONFIG_KEYBOARD_BFIN=y
|
||||||
# CONFIG_KEYBOARD_LKKBD is not set
|
# CONFIG_KEYBOARD_LKKBD is not set
|
||||||
# CONFIG_KEYBOARD_GPIO is not set
|
# CONFIG_KEYBOARD_GPIO is not set
|
||||||
# CONFIG_KEYBOARD_MATRIX is not set
|
# CONFIG_KEYBOARD_MATRIX is not set
|
||||||
|
# CONFIG_KEYBOARD_MAX7359 is not set
|
||||||
# CONFIG_KEYBOARD_NEWTON is not set
|
# CONFIG_KEYBOARD_NEWTON is not set
|
||||||
# CONFIG_KEYBOARD_OPENCORES is not set
|
# CONFIG_KEYBOARD_OPENCORES is not set
|
||||||
# CONFIG_KEYBOARD_STOWAWAY is not set
|
# CONFIG_KEYBOARD_STOWAWAY is not set
|
||||||
|
@ -900,6 +922,7 @@ CONFIG_TOUCHSCREEN_AD7877=m
|
||||||
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
||||||
# CONFIG_TOUCHSCREEN_ELO is not set
|
# CONFIG_TOUCHSCREEN_ELO is not set
|
||||||
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
|
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_MCS5000 is not set
|
||||||
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
||||||
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
||||||
# CONFIG_TOUCHSCREEN_MK712 is not set
|
# CONFIG_TOUCHSCREEN_MK712 is not set
|
||||||
|
@ -910,7 +933,6 @@ CONFIG_TOUCHSCREEN_AD7877=m
|
||||||
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
|
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
||||||
# CONFIG_TOUCHSCREEN_TSC2007 is not set
|
# CONFIG_TOUCHSCREEN_TSC2007 is not set
|
||||||
# CONFIG_TOUCHSCREEN_W90X900 is not set
|
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_ATI_REMOTE is not set
|
# CONFIG_INPUT_ATI_REMOTE is not set
|
||||||
# CONFIG_INPUT_ATI_REMOTE2 is not set
|
# CONFIG_INPUT_ATI_REMOTE2 is not set
|
||||||
|
@ -976,11 +998,6 @@ CONFIG_UNIX98_PTYS=y
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
CONFIG_BFIN_OTP=y
|
CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
# CONFIG_BFIN_OTP_WRITE_ENABLE is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -988,6 +1005,7 @@ CONFIG_BFIN_OTP=y
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=y
|
CONFIG_I2C_CHARDEV=y
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -1021,9 +1039,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -1078,11 +1093,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -1116,8 +1135,10 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_PMIC_ADP5520 is not set
|
# CONFIG_PMIC_ADP5520 is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
# CONFIG_MFD_PCF50633 is not set
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
# CONFIG_AB3100_CORE is not set
|
# CONFIG_AB3100_CORE is not set
|
||||||
# CONFIG_EZX_PCAP is not set
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
@ -1192,6 +1213,7 @@ CONFIG_LOGO=y
|
||||||
CONFIG_LOGO_BLACKFIN_CLUT224=y
|
CONFIG_LOGO_BLACKFIN_CLUT224=y
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_SOUND_OSS_CORE=y
|
CONFIG_SOUND_OSS_CORE=y
|
||||||
|
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
||||||
CONFIG_SND=y
|
CONFIG_SND=y
|
||||||
CONFIG_SND_TIMER=y
|
CONFIG_SND_TIMER=y
|
||||||
CONFIG_SND_PCM=y
|
CONFIG_SND_PCM=y
|
||||||
|
@ -1245,7 +1267,6 @@ CONFIG_SND_SOC_AD1980=y
|
||||||
CONFIG_AC97_BUS=y
|
CONFIG_AC97_BUS=y
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1268,6 +1289,7 @@ CONFIG_HID_CYPRESS=y
|
||||||
CONFIG_HID_EZKEY=y
|
CONFIG_HID_EZKEY=y
|
||||||
# CONFIG_HID_KYE is not set
|
# CONFIG_HID_KYE is not set
|
||||||
CONFIG_HID_GYRATION=y
|
CONFIG_HID_GYRATION=y
|
||||||
|
# CONFIG_HID_TWINHAN is not set
|
||||||
# CONFIG_HID_KENSINGTON is not set
|
# CONFIG_HID_KENSINGTON is not set
|
||||||
CONFIG_HID_LOGITECH=y
|
CONFIG_HID_LOGITECH=y
|
||||||
# CONFIG_LOGITECH_FF is not set
|
# CONFIG_LOGITECH_FF is not set
|
||||||
|
@ -1422,10 +1444,11 @@ CONFIG_MMC_BLOCK_BOUNCE=y
|
||||||
# MMC/SD/SDIO Host Controller Drivers
|
# MMC/SD/SDIO Host Controller Drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MMC_SDHCI is not set
|
# CONFIG_MMC_SDHCI is not set
|
||||||
|
# CONFIG_MMC_AT91 is not set
|
||||||
|
# CONFIG_MMC_ATMELMCI is not set
|
||||||
|
# CONFIG_MMC_SPI is not set
|
||||||
CONFIG_SDH_BFIN=y
|
CONFIG_SDH_BFIN=y
|
||||||
# CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND is not set
|
# CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND is not set
|
||||||
# CONFIG_SDH_BFIN_ENABLE_SDIO_IRQ is not set
|
|
||||||
# CONFIG_MMC_SPI is not set
|
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
# CONFIG_ACCESSIBILITY is not set
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
|
@ -1472,6 +1495,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1522,6 +1546,7 @@ CONFIG_FS_MBCACHE=y
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
# CONFIG_BTRFS_FS is not set
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
CONFIG_FILE_LOCKING=y
|
||||||
CONFIG_FSNOTIFY=y
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
|
@ -1563,7 +1588,6 @@ CONFIG_NTFS_RW=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
CONFIG_MISC_FILESYSTEMS=y
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
|
@ -1595,7 +1619,6 @@ CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_ROMFS_FS is not set
|
# CONFIG_ROMFS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
# CONFIG_NILFS2_FS is not set
|
|
||||||
CONFIG_NETWORK_FILESYSTEMS=y
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
CONFIG_NFS_FS=m
|
CONFIG_NFS_FS=m
|
||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
|
@ -1680,6 +1703,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
@ -1714,12 +1738,14 @@ CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
# CONFIG_DEBUG_NOTIFIERS is not set
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
# CONFIG_PAGE_POISONING is not set
|
# CONFIG_PAGE_POISONING is not set
|
||||||
CONFIG_HAVE_FUNCTION_TRACER=y
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
|
@ -1730,7 +1756,6 @@ CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
# CONFIG_KMEMCHECK is not set
|
|
||||||
# CONFIG_DEBUG_STACKOVERFLOW is not set
|
# CONFIG_DEBUG_STACKOVERFLOW is not set
|
||||||
# CONFIG_DEBUG_STACK_USAGE is not set
|
# CONFIG_DEBUG_STACK_USAGE is not set
|
||||||
CONFIG_DEBUG_VERBOSE=y
|
CONFIG_DEBUG_VERBOSE=y
|
||||||
|
@ -1766,7 +1791,6 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1798,11 +1822,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
|
|
@ -114,7 +114,7 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
CONFIG_LBDAF=y
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -1486,19 +1486,10 @@ CONFIG_DEBUG_INFO=y
|
||||||
CONFIG_HAVE_FUNCTION_TRACER=y
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
CONFIG_TRACING_SUPPORT=y
|
CONFIG_TRACING_SUPPORT=y
|
||||||
CONFIG_FTRACE=y
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_FUNCTION_TRACER is not set
|
# CONFIG_BRANCH_PROFILE_NONE is not set
|
||||||
# CONFIG_IRQSOFF_TRACER is not set
|
|
||||||
# CONFIG_SCHED_TRACER is not set
|
|
||||||
# CONFIG_ENABLE_DEFAULT_TRACERS is not set
|
|
||||||
# CONFIG_BOOT_TRACER is not set
|
|
||||||
CONFIG_BRANCH_PROFILE_NONE=y
|
|
||||||
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
||||||
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
||||||
# CONFIG_STACK_TRACER is not set
|
|
||||||
# CONFIG_KMEMTRACE is not set
|
|
||||||
# CONFIG_WORKQUEUE_TRACER is not set
|
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_DYNAMIC_DEBUG is not set
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.31.5
|
# Linux kernel version: 2.6.32.2
|
||||||
# Mon Nov 2 21:59:31 2009
|
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
|
@ -12,7 +11,6 @@ CONFIG_GENERIC_CSUM=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
|
@ -49,11 +47,12 @@ CONFIG_SYSVIPC_SYSCTL=y
|
||||||
#
|
#
|
||||||
# RCU Subsystem
|
# RCU Subsystem
|
||||||
#
|
#
|
||||||
CONFIG_CLASSIC_RCU=y
|
CONFIG_TREE_RCU=y
|
||||||
# CONFIG_TREE_RCU is not set
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
# CONFIG_PREEMPT_RCU is not set
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
# CONFIG_TREE_RCU_TRACE is not set
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
# CONFIG_PREEMPT_RCU_TRACE is not set
|
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
|
@ -89,17 +88,15 @@ CONFIG_EPOLL=y
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Performance Counters
|
# Kernel Performance Events And Counters
|
||||||
#
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
# CONFIG_STRIP_ASM_SYMS is not set
|
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
# CONFIG_SLUB is not set
|
# CONFIG_SLUB is not set
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -163,15 +160,15 @@ CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_BF537 is not set
|
# CONFIG_BF537 is not set
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
CONFIG_BF561=y
|
CONFIG_BF561=y
|
||||||
# CONFIG_SMP is not set
|
# CONFIG_SMP is not set
|
||||||
|
@ -180,9 +177,9 @@ CONFIG_BF_REV_MAX=5
|
||||||
# CONFIG_BF_REV_0_0 is not set
|
# CONFIG_BF_REV_0_0 is not set
|
||||||
# CONFIG_BF_REV_0_1 is not set
|
# CONFIG_BF_REV_0_1 is not set
|
||||||
# CONFIG_BF_REV_0_2 is not set
|
# CONFIG_BF_REV_0_2 is not set
|
||||||
# CONFIG_BF_REV_0_3 is not set
|
CONFIG_BF_REV_0_3=y
|
||||||
# CONFIG_BF_REV_0_4 is not set
|
# CONFIG_BF_REV_0_4 is not set
|
||||||
CONFIG_BF_REV_0_5=y
|
# CONFIG_BF_REV_0_5 is not set
|
||||||
# CONFIG_BF_REV_0_6 is not set
|
# CONFIG_BF_REV_0_6 is not set
|
||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
|
@ -298,7 +295,7 @@ CONFIG_GENERIC_TIME=y
|
||||||
CONFIG_GENERIC_CLOCKEVENTS=y
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
# CONFIG_TICKSOURCE_GPTMR0 is not set
|
||||||
CONFIG_TICKSOURCE_CORETMR=y
|
CONFIG_TICKSOURCE_CORETMR=y
|
||||||
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
CONFIG_CYCLES_CLOCKSOURCE=y
|
||||||
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
# CONFIG_GPTMR0_CLOCKSOURCE is not set
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
# CONFIG_NO_HZ is not set
|
# CONFIG_NO_HZ is not set
|
||||||
|
@ -353,12 +350,14 @@ CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
|
|
||||||
CONFIG_NOMMU_INITIAL_TRIM_EXCESS=0
|
CONFIG_NOMMU_INITIAL_TRIM_EXCESS=0
|
||||||
CONFIG_BFIN_GPTIMERS=m
|
CONFIG_BFIN_GPTIMERS=m
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -370,9 +369,11 @@ CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
# CONFIG_BFIN_EXTMEM_WRITEBACK is not set
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
CONFIG_BFIN_EXTMEM_WRITETHROUGH=y
|
||||||
# CONFIG_BFIN_L2_DCACHEABLE is not set
|
CONFIG_BFIN_L2_DCACHEABLE=y
|
||||||
|
# CONFIG_BFIN_L2_WRITEBACK is not set
|
||||||
|
CONFIG_BFIN_L2_WRITETHROUGH=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Memory Protection Unit
|
# Memory Protection Unit
|
||||||
|
@ -472,6 +473,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -613,6 +615,7 @@ CONFIG_MTD_PHYSMAP=m
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -685,6 +688,7 @@ CONFIG_SMC91X=y
|
||||||
# CONFIG_ETHOC is not set
|
# CONFIG_ETHOC is not set
|
||||||
# CONFIG_SMSC911X is not set
|
# CONFIG_SMSC911X is not set
|
||||||
# CONFIG_DNET is not set
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -695,14 +699,10 @@ CONFIG_SMC91X=y
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
# CONFIG_KS8842 is not set
|
# CONFIG_KS8842 is not set
|
||||||
# CONFIG_KS8851 is not set
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
#
|
|
||||||
# Wireless LAN
|
|
||||||
#
|
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
|
@ -782,11 +782,6 @@ CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
# CONFIG_CAN4LINUX is not set
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
|
@ -838,11 +833,15 @@ CONFIG_GPIO_SYSFS=y
|
||||||
#
|
#
|
||||||
# CONFIG_GPIO_MAX7301 is not set
|
# CONFIG_GPIO_MAX7301 is not set
|
||||||
# CONFIG_GPIO_MCP23S08 is not set
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
|
# CONFIG_GPIO_MC33880 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# AC97 GPIO expanders:
|
||||||
|
#
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
@ -865,6 +864,7 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
# CONFIG_EZX_PCAP is not set
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
# CONFIG_MEDIA_SUPPORT is not set
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
|
@ -884,7 +884,6 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_SOUND is not set
|
# CONFIG_SOUND is not set
|
||||||
CONFIG_HID_SUPPORT=y
|
CONFIG_HID_SUPPORT=y
|
||||||
CONFIG_HID=m
|
CONFIG_HID=m
|
||||||
# CONFIG_HID_DEBUG is not set
|
|
||||||
# CONFIG_HIDRAW is not set
|
# CONFIG_HIDRAW is not set
|
||||||
# CONFIG_HID_PID is not set
|
# CONFIG_HID_PID is not set
|
||||||
|
|
||||||
|
@ -923,6 +922,7 @@ CONFIG_HID=m
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
# CONFIG_BTRFS_FS is not set
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
CONFIG_FILE_LOCKING=y
|
||||||
CONFIG_FSNOTIFY=y
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
|
@ -957,7 +957,6 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
CONFIG_MISC_FILESYSTEMS=y
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
|
@ -989,7 +988,6 @@ CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_ROMFS_FS is not set
|
# CONFIG_ROMFS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
# CONFIG_NILFS2_FS is not set
|
|
||||||
CONFIG_NETWORK_FILESYSTEMS=y
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
CONFIG_NFS_FS=m
|
CONFIG_NFS_FS=m
|
||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
|
@ -1064,6 +1062,7 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
@ -1098,26 +1097,24 @@ CONFIG_DEBUG_INFO=y
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
# CONFIG_DEBUG_NOTIFIERS is not set
|
# CONFIG_DEBUG_NOTIFIERS is not set
|
||||||
|
# CONFIG_DEBUG_CREDENTIALS is not set
|
||||||
# CONFIG_FRAME_POINTER is not set
|
# CONFIG_FRAME_POINTER is not set
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
# CONFIG_BACKTRACE_SELF_TEST is not set
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
|
||||||
|
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
# CONFIG_PAGE_POISONING is not set
|
# CONFIG_PAGE_POISONING is not set
|
||||||
CONFIG_HAVE_FUNCTION_TRACER=y
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
CONFIG_TRACING_SUPPORT=y
|
CONFIG_TRACING_SUPPORT=y
|
||||||
# CONFIG_FTRACE is not set
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_BRANCH_PROFILE_NONE is not set
|
|
||||||
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
|
|
||||||
# CONFIG_PROFILE_ALL_BRANCHES is not set
|
|
||||||
# CONFIG_DYNAMIC_DEBUG is not set
|
# CONFIG_DYNAMIC_DEBUG is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
# CONFIG_KGDB is not set
|
# CONFIG_KGDB is not set
|
||||||
# CONFIG_KMEMCHECK is not set
|
|
||||||
# CONFIG_DEBUG_STACKOVERFLOW is not set
|
# CONFIG_DEBUG_STACKOVERFLOW is not set
|
||||||
# CONFIG_DEBUG_STACK_USAGE is not set
|
# CONFIG_DEBUG_STACK_USAGE is not set
|
||||||
CONFIG_DEBUG_VERBOSE=y
|
CONFIG_DEBUG_VERBOSE=y
|
||||||
|
@ -1153,7 +1150,6 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1185,11 +1181,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
|
|
@ -834,13 +834,6 @@ CONFIG_SND_VERBOSE_PROCFS=y
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
CONFIG_SND_BLACKFIN_AD1836=m
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_TDM=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_I2S is not set
|
|
||||||
CONFIG_SND_BLACKFIN_AD1836_MULSUB=y
|
|
||||||
# CONFIG_SND_BLACKFIN_AD1836_5P1 is not set
|
|
||||||
CONFIG_SND_BLACKFIN_SPORT=0
|
|
||||||
CONFIG_SND_BLACKFIN_SPI_PFBIT=4
|
|
||||||
# CONFIG_SND_BFIN_AD73311 is not set
|
# CONFIG_SND_BFIN_AD73311 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -1,21 +1,27 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.28.10
|
# Linux kernel version: 2.6.32.2
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
CONFIG_BLACKFIN=y
|
CONFIG_BLACKFIN=y
|
||||||
|
CONFIG_GENERIC_CSUM=y
|
||||||
|
CONFIG_GENERIC_BUG=y
|
||||||
CONFIG_ZONE_DMA=y
|
CONFIG_ZONE_DMA=y
|
||||||
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
CONFIG_GENERIC_FIND_NEXT_BIT=y
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
|
CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
|
CONFIG_LOCKDEP_SUPPORT=y
|
||||||
|
CONFIG_STACKTRACE_SUPPORT=y
|
||||||
|
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
CONFIG_CONSTRUCTORS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# General setup
|
# General setup
|
||||||
|
@ -25,16 +31,32 @@ CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
|
CONFIG_HAVE_KERNEL_GZIP=y
|
||||||
|
CONFIG_HAVE_KERNEL_BZIP2=y
|
||||||
|
CONFIG_HAVE_KERNEL_LZMA=y
|
||||||
|
CONFIG_KERNEL_GZIP=y
|
||||||
|
# CONFIG_KERNEL_BZIP2 is not set
|
||||||
|
# CONFIG_KERNEL_LZMA is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_TREE_RCU=y
|
||||||
|
# CONFIG_TREE_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_RCU_TRACE is not set
|
||||||
|
CONFIG_RCU_FANOUT=32
|
||||||
|
# CONFIG_RCU_FANOUT_EXACT is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
|
||||||
# CONFIG_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
# CONFIG_SYSFS_DEPRECATED_V2 is not set
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
# CONFIG_NAMESPACES is not set
|
# CONFIG_NAMESPACES is not set
|
||||||
|
@ -58,6 +80,10 @@ CONFIG_SIGNALFD=y
|
||||||
CONFIG_TIMERFD=y
|
CONFIG_TIMERFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
# CONFIG_AIO is not set
|
# CONFIG_AIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Kernel Performance Events And Counters
|
||||||
|
#
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_COMPAT_BRK=y
|
CONFIG_COMPAT_BRK=y
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
|
@ -65,11 +91,14 @@ CONFIG_SLAB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
CONFIG_MMAP_ALLOW_UNINITIALIZED=y
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
CONFIG_HAVE_OPROFILE=y
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GCOV-based kernel profiling
|
||||||
|
#
|
||||||
|
# CONFIG_SLOW_WORK is not set
|
||||||
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_TINY_SHMEM=y
|
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
# CONFIG_MODULE_FORCE_LOAD is not set
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
|
@ -77,11 +106,8 @@ CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBDAF is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
|
||||||
# CONFIG_LSF is not set
|
|
||||||
# CONFIG_BLK_DEV_BSG is not set
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
# CONFIG_BLK_DEV_INTEGRITY is not set
|
# CONFIG_BLK_DEV_INTEGRITY is not set
|
||||||
|
|
||||||
|
@ -97,7 +123,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_PREEMPT_NONE is not set
|
# CONFIG_PREEMPT_NONE is not set
|
||||||
CONFIG_PREEMPT_VOLUNTARY=y
|
CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
# CONFIG_PREEMPT is not set
|
# CONFIG_PREEMPT is not set
|
||||||
|
@ -128,15 +153,15 @@ CONFIG_PREEMPT_VOLUNTARY=y
|
||||||
CONFIG_BF537=y
|
CONFIG_BF537=y
|
||||||
# CONFIG_BF538 is not set
|
# CONFIG_BF538 is not set
|
||||||
# CONFIG_BF539 is not set
|
# CONFIG_BF539 is not set
|
||||||
# CONFIG_BF542 is not set
|
# CONFIG_BF542_std is not set
|
||||||
# CONFIG_BF542M is not set
|
# CONFIG_BF542M is not set
|
||||||
# CONFIG_BF544 is not set
|
# CONFIG_BF544_std is not set
|
||||||
# CONFIG_BF544M is not set
|
# CONFIG_BF544M is not set
|
||||||
# CONFIG_BF547 is not set
|
# CONFIG_BF547_std is not set
|
||||||
# CONFIG_BF547M is not set
|
# CONFIG_BF547M is not set
|
||||||
# CONFIG_BF548 is not set
|
# CONFIG_BF548_std is not set
|
||||||
# CONFIG_BF548M is not set
|
# CONFIG_BF548M is not set
|
||||||
# CONFIG_BF549 is not set
|
# CONFIG_BF549_std is not set
|
||||||
# CONFIG_BF549M is not set
|
# CONFIG_BF549M is not set
|
||||||
# CONFIG_BF561 is not set
|
# CONFIG_BF561 is not set
|
||||||
CONFIG_BF_REV_MIN=2
|
CONFIG_BF_REV_MIN=2
|
||||||
|
@ -180,7 +205,8 @@ CONFIG_IRQ_MEM_DMA1=13
|
||||||
CONFIG_IRQ_WATCH=13
|
CONFIG_IRQ_WATCH=13
|
||||||
CONFIG_IRQ_SPI=10
|
CONFIG_IRQ_SPI=10
|
||||||
# CONFIG_BFIN537_STAMP is not set
|
# CONFIG_BFIN537_STAMP is not set
|
||||||
# CONFIG_BFIN537_BLUETECHNIX_CM is not set
|
# CONFIG_BFIN537_BLUETECHNIX_CM_E is not set
|
||||||
|
# CONFIG_BFIN537_BLUETECHNIX_CM_U is not set
|
||||||
# CONFIG_BFIN537_BLUETECHNIX_TCM is not set
|
# CONFIG_BFIN537_BLUETECHNIX_TCM is not set
|
||||||
CONFIG_PNAV10=y
|
CONFIG_PNAV10=y
|
||||||
# CONFIG_CAMSIG_MINOTAUR is not set
|
# CONFIG_CAMSIG_MINOTAUR is not set
|
||||||
|
@ -282,7 +308,6 @@ CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
CONFIG_PAGEFLAGS_EXTENDED=y
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
|
||||||
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
# CONFIG_PHYS_ADDR_T_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
|
@ -291,16 +316,18 @@ CONFIG_BFIN_GPTIMERS=y
|
||||||
# CONFIG_DMA_UNCACHED_4M is not set
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
|
# CONFIG_DMA_UNCACHED_512K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_256K is not set
|
||||||
|
# CONFIG_DMA_UNCACHED_128K is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Cache Support
|
# Cache Support
|
||||||
#
|
#
|
||||||
CONFIG_BFIN_ICACHE=y
|
CONFIG_BFIN_ICACHE=y
|
||||||
# CONFIG_BFIN_ICACHE_LOCK is not set
|
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
||||||
CONFIG_BFIN_DCACHE=y
|
CONFIG_BFIN_DCACHE=y
|
||||||
# CONFIG_BFIN_DCACHE_BANKA is not set
|
# CONFIG_BFIN_DCACHE_BANKA is not set
|
||||||
CONFIG_BFIN_EXTMEM_ICACHEABLE=y
|
|
||||||
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
CONFIG_BFIN_EXTMEM_DCACHEABLE=y
|
||||||
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
# CONFIG_BFIN_EXTMEM_WRITETHROUGH is not set
|
||||||
|
@ -311,7 +338,7 @@ CONFIG_BFIN_EXTMEM_WRITEBACK=y
|
||||||
# CONFIG_MPU is not set
|
# CONFIG_MPU is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Asynchonous Memory Configuration
|
# Asynchronous Memory Configuration
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -367,11 +394,6 @@ CONFIG_NET=y
|
||||||
CONFIG_PACKET=y
|
CONFIG_PACKET=y
|
||||||
# CONFIG_PACKET_MMAP is not set
|
# CONFIG_PACKET_MMAP is not set
|
||||||
CONFIG_UNIX=y
|
CONFIG_UNIX=y
|
||||||
CONFIG_XFRM=y
|
|
||||||
# CONFIG_XFRM_USER is not set
|
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
|
||||||
# CONFIG_XFRM_STATISTICS is not set
|
|
||||||
# CONFIG_NET_KEY is not set
|
# CONFIG_NET_KEY is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
# CONFIG_IP_MULTICAST is not set
|
# CONFIG_IP_MULTICAST is not set
|
||||||
|
@ -395,7 +417,6 @@ CONFIG_IP_PNP=y
|
||||||
# CONFIG_INET_XFRM_MODE_BEET is not set
|
# CONFIG_INET_XFRM_MODE_BEET is not set
|
||||||
# CONFIG_INET_LRO is not set
|
# CONFIG_INET_LRO is not set
|
||||||
# CONFIG_INET_DIAG is not set
|
# CONFIG_INET_DIAG is not set
|
||||||
CONFIG_INET_TCP_DIAG=y
|
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
CONFIG_TCP_CONG_CUBIC=y
|
CONFIG_TCP_CONG_CUBIC=y
|
||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
|
@ -406,6 +427,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
|
# CONFIG_RDS is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
# CONFIG_ATM is not set
|
# CONFIG_ATM is not set
|
||||||
# CONFIG_BRIDGE is not set
|
# CONFIG_BRIDGE is not set
|
||||||
|
@ -419,7 +441,10 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
# CONFIG_PHONET is not set
|
||||||
|
# CONFIG_IEEE802154 is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
# CONFIG_DCB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
|
@ -430,13 +455,8 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_WIRELESS is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_IEEE80211 is not set
|
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
|
@ -455,6 +475,7 @@ CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
|
# CONFIG_MTD_TESTS is not set
|
||||||
# CONFIG_MTD_CONCAT is not set
|
# CONFIG_MTD_CONCAT is not set
|
||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
|
@ -506,6 +527,7 @@ CONFIG_MTD_UCLINUX=y
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_DATAFLASH is not set
|
# CONFIG_MTD_DATAFLASH is not set
|
||||||
# CONFIG_MTD_M25P80 is not set
|
# CONFIG_MTD_M25P80 is not set
|
||||||
|
# CONFIG_MTD_SST25L is not set
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
|
@ -521,17 +543,17 @@ CONFIG_MTD_NAND=y
|
||||||
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
# CONFIG_MTD_NAND_VERIFY_WRITE is not set
|
||||||
# CONFIG_MTD_NAND_ECC_SMC is not set
|
# CONFIG_MTD_NAND_ECC_SMC is not set
|
||||||
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
# CONFIG_MTD_NAND_MUSEUM_IDS is not set
|
||||||
CONFIG_MTD_NAND_BFIN=y
|
|
||||||
CONFIG_BFIN_NAND_BASE=0x20100000
|
|
||||||
CONFIG_BFIN_NAND_CLE=2
|
|
||||||
CONFIG_BFIN_NAND_ALE=1
|
|
||||||
CONFIG_BFIN_NAND_READY=44
|
|
||||||
CONFIG_MTD_NAND_IDS=y
|
CONFIG_MTD_NAND_IDS=y
|
||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
# CONFIG_MTD_NAND_NANDSIM is not set
|
# CONFIG_MTD_NAND_NANDSIM is not set
|
||||||
# CONFIG_MTD_NAND_PLATFORM is not set
|
# CONFIG_MTD_NAND_PLATFORM is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# LPDDR flash memory drivers
|
||||||
|
#
|
||||||
|
# CONFIG_MTD_LPDDR is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
|
@ -549,10 +571,20 @@ CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_AD525X_DPOT is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_ISL29003 is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_AT25 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_MAX6875 is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
|
@ -587,6 +619,9 @@ CONFIG_PHYLIB=y
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_REALTEK_PHY is not set
|
# CONFIG_REALTEK_PHY is not set
|
||||||
|
# CONFIG_NATIONAL_PHY is not set
|
||||||
|
# CONFIG_STE10XP is not set
|
||||||
|
# CONFIG_LSI_ET1011C_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
|
@ -597,9 +632,12 @@ CONFIG_BFIN_TX_DESC_NUM=100
|
||||||
CONFIG_BFIN_RX_DESC_NUM=100
|
CONFIG_BFIN_RX_DESC_NUM=100
|
||||||
CONFIG_BFIN_MAC_RMII=y
|
CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_ENC28J60 is not set
|
# CONFIG_ENC28J60 is not set
|
||||||
|
# CONFIG_ETHOC is not set
|
||||||
|
# CONFIG_SMSC911X is not set
|
||||||
|
# CONFIG_DNET is not set
|
||||||
|
# CONFIG_ADF702X is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
@ -608,15 +646,16 @@ CONFIG_BFIN_MAC_RMII=y
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_CLR_ICINTSTAT is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
# CONFIG_IBM_NEW_EMAC_MAL_COMMON_ERR is not set
|
||||||
# CONFIG_B44 is not set
|
# CONFIG_B44 is not set
|
||||||
|
# CONFIG_KS8842 is not set
|
||||||
|
# CONFIG_KS8851 is not set
|
||||||
|
# CONFIG_KS8851_MLL is not set
|
||||||
# CONFIG_NETDEV_1000 is not set
|
# CONFIG_NETDEV_1000 is not set
|
||||||
# CONFIG_NETDEV_10000 is not set
|
# CONFIG_NETDEV_10000 is not set
|
||||||
|
# CONFIG_WLAN is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Wireless LAN
|
# Enable WiMAX (Networking options) to see the WiMAX drivers
|
||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
|
||||||
# CONFIG_WLAN_80211 is not set
|
|
||||||
# CONFIG_IWLWIFI_LEDS is not set
|
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
|
@ -649,14 +688,17 @@ CONFIG_INPUT_EVDEV=y
|
||||||
# CONFIG_INPUT_JOYSTICK is not set
|
# CONFIG_INPUT_JOYSTICK is not set
|
||||||
# CONFIG_INPUT_TABLET is not set
|
# CONFIG_INPUT_TABLET is not set
|
||||||
CONFIG_INPUT_TOUCHSCREEN=y
|
CONFIG_INPUT_TOUCHSCREEN=y
|
||||||
|
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
||||||
CONFIG_TOUCHSCREEN_AD7877=y
|
CONFIG_TOUCHSCREEN_AD7877=y
|
||||||
# CONFIG_TOUCHSCREEN_AD7879_I2C is not set
|
# CONFIG_TOUCHSCREEN_AD7879_I2C is not set
|
||||||
# CONFIG_TOUCHSCREEN_AD7879_SPI is not set
|
# CONFIG_TOUCHSCREEN_AD7879_SPI is not set
|
||||||
# CONFIG_TOUCHSCREEN_AD7879 is not set
|
# CONFIG_TOUCHSCREEN_AD7879 is not set
|
||||||
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
# CONFIG_TOUCHSCREEN_EETI is not set
|
||||||
# CONFIG_TOUCHSCREEN_FUJITSU is not set
|
# CONFIG_TOUCHSCREEN_FUJITSU is not set
|
||||||
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
||||||
# CONFIG_TOUCHSCREEN_ELO is not set
|
# CONFIG_TOUCHSCREEN_ELO is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_MCS5000 is not set
|
||||||
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
||||||
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
# CONFIG_TOUCHSCREEN_INEXIO is not set
|
||||||
# CONFIG_TOUCHSCREEN_MK712 is not set
|
# CONFIG_TOUCHSCREEN_MK712 is not set
|
||||||
|
@ -665,6 +707,7 @@ CONFIG_TOUCHSCREEN_AD7877=y
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
|
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
|
||||||
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
|
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
|
||||||
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
|
||||||
|
# CONFIG_TOUCHSCREEN_TSC2007 is not set
|
||||||
CONFIG_INPUT_MISC=y
|
CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_ATI_REMOTE is not set
|
# CONFIG_INPUT_ATI_REMOTE is not set
|
||||||
# CONFIG_INPUT_ATI_REMOTE2 is not set
|
# CONFIG_INPUT_ATI_REMOTE2 is not set
|
||||||
|
@ -673,7 +716,9 @@ CONFIG_INPUT_MISC=y
|
||||||
# CONFIG_INPUT_YEALINK is not set
|
# CONFIG_INPUT_YEALINK is not set
|
||||||
# CONFIG_INPUT_CM109 is not set
|
# CONFIG_INPUT_CM109 is not set
|
||||||
CONFIG_INPUT_UINPUT=y
|
CONFIG_INPUT_UINPUT=y
|
||||||
# CONFIG_CONFIG_INPUT_PCF8574 is not set
|
# CONFIG_INPUT_AD714X is not set
|
||||||
|
# CONFIG_INPUT_ADXL34X is not set
|
||||||
|
# CONFIG_INPUT_PCF8574 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Hardware I/O ports
|
# Hardware I/O ports
|
||||||
|
@ -684,16 +729,13 @@ CONFIG_INPUT_UINPUT=y
|
||||||
#
|
#
|
||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
|
||||||
CONFIG_BFIN_DMA_INTERFACE=m
|
CONFIG_BFIN_DMA_INTERFACE=m
|
||||||
# CONFIG_BFIN_PPI is not set
|
# CONFIG_BFIN_PPI is not set
|
||||||
# CONFIG_BFIN_PPIFCD is not set
|
# CONFIG_BFIN_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BFIN_SPI_ADC is not set
|
# CONFIG_BFIN_SPI_ADC is not set
|
||||||
CONFIG_BFIN_SPORT=y
|
CONFIG_BFIN_SPORT=y
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
|
||||||
# CONFIG_BFIN_TWI_LCD is not set
|
# CONFIG_BFIN_TWI_LCD is not set
|
||||||
# CONFIG_SIMPLE_GPIO is not set
|
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
CONFIG_DEVKMEM=y
|
CONFIG_DEVKMEM=y
|
||||||
# CONFIG_BFIN_JTAG_COMM is not set
|
# CONFIG_BFIN_JTAG_COMM is not set
|
||||||
|
@ -707,6 +749,7 @@ CONFIG_DEVKMEM=y
|
||||||
#
|
#
|
||||||
# Non-8250 serial port support
|
# Non-8250 serial port support
|
||||||
#
|
#
|
||||||
|
# CONFIG_SERIAL_MAX3100 is not set
|
||||||
CONFIG_SERIAL_BFIN=y
|
CONFIG_SERIAL_BFIN=y
|
||||||
CONFIG_SERIAL_BFIN_CONSOLE=y
|
CONFIG_SERIAL_BFIN_CONSOLE=y
|
||||||
CONFIG_SERIAL_BFIN_DMA=y
|
CONFIG_SERIAL_BFIN_DMA=y
|
||||||
|
@ -719,24 +762,17 @@ CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
# CONFIG_SERIAL_BFIN_SPORT is not set
|
# CONFIG_SERIAL_BFIN_SPORT is not set
|
||||||
CONFIG_UNIX98_PTYS=y
|
CONFIG_UNIX98_PTYS=y
|
||||||
|
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
|
||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# CAN, the car bus and industrial fieldbus
|
|
||||||
#
|
|
||||||
CONFIG_CAN4LINUX=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# linux embedded drivers
|
|
||||||
#
|
|
||||||
CONFIG_CAN_BLACKFIN=m
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
CONFIG_HW_RANDOM=y
|
CONFIG_HW_RANDOM=y
|
||||||
|
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
|
CONFIG_I2C_COMPAT=y
|
||||||
CONFIG_I2C_CHARDEV=y
|
CONFIG_I2C_CHARDEV=y
|
||||||
CONFIG_I2C_HELPER_AUTO=y
|
CONFIG_I2C_HELPER_AUTO=y
|
||||||
|
|
||||||
|
@ -769,14 +805,6 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=100
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
CONFIG_SENSORS_PCF8574=m
|
|
||||||
# CONFIG_PCF8575 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
|
@ -792,20 +820,29 @@ CONFIG_SPI_BFIN=y
|
||||||
# CONFIG_SPI_BFIN_LOCK is not set
|
# CONFIG_SPI_BFIN_LOCK is not set
|
||||||
# CONFIG_SPI_BFIN_SPORT is not set
|
# CONFIG_SPI_BFIN_SPORT is not set
|
||||||
# CONFIG_SPI_BITBANG is not set
|
# CONFIG_SPI_BITBANG is not set
|
||||||
|
# CONFIG_SPI_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI Protocol Masters
|
# SPI Protocol Masters
|
||||||
#
|
#
|
||||||
# CONFIG_EEPROM_AT25 is not set
|
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# PPS support
|
||||||
|
#
|
||||||
|
# CONFIG_PPS is not set
|
||||||
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
|
||||||
# CONFIG_GPIOLIB is not set
|
# CONFIG_GPIOLIB is not set
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
CONFIG_HWMON=y
|
CONFIG_HWMON=y
|
||||||
# CONFIG_HWMON_VID is not set
|
# CONFIG_HWMON_VID is not set
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Native drivers
|
||||||
|
#
|
||||||
# CONFIG_SENSORS_AD7414 is not set
|
# CONFIG_SENSORS_AD7414 is not set
|
||||||
# CONFIG_SENSORS_AD7418 is not set
|
# CONFIG_SENSORS_AD7418 is not set
|
||||||
# CONFIG_SENSORS_ADCXX is not set
|
# CONFIG_SENSORS_ADCXX is not set
|
||||||
|
@ -818,11 +855,13 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_ADT7462 is not set
|
# CONFIG_SENSORS_ADT7462 is not set
|
||||||
# CONFIG_SENSORS_ADT7470 is not set
|
# CONFIG_SENSORS_ADT7470 is not set
|
||||||
# CONFIG_SENSORS_ADT7473 is not set
|
# CONFIG_SENSORS_ADT7473 is not set
|
||||||
|
# CONFIG_SENSORS_ADT7475 is not set
|
||||||
# CONFIG_SENSORS_ATXP1 is not set
|
# CONFIG_SENSORS_ATXP1 is not set
|
||||||
# CONFIG_SENSORS_DS1621 is not set
|
# CONFIG_SENSORS_DS1621 is not set
|
||||||
# CONFIG_SENSORS_F71805F is not set
|
# CONFIG_SENSORS_F71805F is not set
|
||||||
# CONFIG_SENSORS_F71882FG is not set
|
# CONFIG_SENSORS_F71882FG is not set
|
||||||
# CONFIG_SENSORS_F75375S is not set
|
# CONFIG_SENSORS_F75375S is not set
|
||||||
|
# CONFIG_SENSORS_G760A is not set
|
||||||
# CONFIG_SENSORS_GL518SM is not set
|
# CONFIG_SENSORS_GL518SM is not set
|
||||||
# CONFIG_SENSORS_GL520SM is not set
|
# CONFIG_SENSORS_GL520SM is not set
|
||||||
# CONFIG_SENSORS_IT87 is not set
|
# CONFIG_SENSORS_IT87 is not set
|
||||||
|
@ -838,17 +877,24 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_LM90 is not set
|
# CONFIG_SENSORS_LM90 is not set
|
||||||
# CONFIG_SENSORS_LM92 is not set
|
# CONFIG_SENSORS_LM92 is not set
|
||||||
# CONFIG_SENSORS_LM93 is not set
|
# CONFIG_SENSORS_LM93 is not set
|
||||||
|
# CONFIG_SENSORS_LTC4215 is not set
|
||||||
|
# CONFIG_SENSORS_LTC4245 is not set
|
||||||
|
# CONFIG_SENSORS_LM95241 is not set
|
||||||
# CONFIG_SENSORS_MAX1111 is not set
|
# CONFIG_SENSORS_MAX1111 is not set
|
||||||
# CONFIG_SENSORS_MAX1619 is not set
|
# CONFIG_SENSORS_MAX1619 is not set
|
||||||
# CONFIG_SENSORS_MAX6650 is not set
|
# CONFIG_SENSORS_MAX6650 is not set
|
||||||
# CONFIG_SENSORS_PC87360 is not set
|
# CONFIG_SENSORS_PC87360 is not set
|
||||||
# CONFIG_SENSORS_PC87427 is not set
|
# CONFIG_SENSORS_PC87427 is not set
|
||||||
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
|
# CONFIG_SENSORS_SHT15 is not set
|
||||||
# CONFIG_SENSORS_DME1737 is not set
|
# CONFIG_SENSORS_DME1737 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M1 is not set
|
# CONFIG_SENSORS_SMSC47M1 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M192 is not set
|
# CONFIG_SENSORS_SMSC47M192 is not set
|
||||||
# CONFIG_SENSORS_SMSC47B397 is not set
|
# CONFIG_SENSORS_SMSC47B397 is not set
|
||||||
# CONFIG_SENSORS_ADS7828 is not set
|
# CONFIG_SENSORS_ADS7828 is not set
|
||||||
# CONFIG_SENSORS_THMC50 is not set
|
# CONFIG_SENSORS_THMC50 is not set
|
||||||
|
# CONFIG_SENSORS_TMP401 is not set
|
||||||
|
# CONFIG_SENSORS_TMP421 is not set
|
||||||
# CONFIG_SENSORS_VT1211 is not set
|
# CONFIG_SENSORS_VT1211 is not set
|
||||||
# CONFIG_SENSORS_W83781D is not set
|
# CONFIG_SENSORS_W83781D is not set
|
||||||
# CONFIG_SENSORS_W83791D is not set
|
# CONFIG_SENSORS_W83791D is not set
|
||||||
|
@ -858,9 +904,8 @@ CONFIG_HWMON=y
|
||||||
# CONFIG_SENSORS_W83L786NG is not set
|
# CONFIG_SENSORS_W83L786NG is not set
|
||||||
# CONFIG_SENSORS_W83627HF is not set
|
# CONFIG_SENSORS_W83627HF is not set
|
||||||
# CONFIG_SENSORS_W83627EHF is not set
|
# CONFIG_SENSORS_W83627EHF is not set
|
||||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
# CONFIG_SENSORS_LIS3_SPI is not set
|
||||||
# CONFIG_THERMAL is not set
|
# CONFIG_THERMAL is not set
|
||||||
# CONFIG_THERMAL_HWMON is not set
|
|
||||||
# CONFIG_WATCHDOG is not set
|
# CONFIG_WATCHDOG is not set
|
||||||
CONFIG_SSB_POSSIBLE=y
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
|
||||||
|
@ -875,28 +920,19 @@ CONFIG_SSB_POSSIBLE=y
|
||||||
# CONFIG_MFD_CORE is not set
|
# CONFIG_MFD_CORE is not set
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
# CONFIG_HTC_PASIC3 is not set
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
# CONFIG_TWL4030_CORE is not set
|
||||||
# CONFIG_MFD_TMIO is not set
|
# CONFIG_MFD_TMIO is not set
|
||||||
# CONFIG_PMIC_DA903X is not set
|
# CONFIG_PMIC_DA903X is not set
|
||||||
# CONFIG_PMIC_ADP5520 is not set
|
# CONFIG_PMIC_ADP5520 is not set
|
||||||
# CONFIG_MFD_WM8400 is not set
|
# CONFIG_MFD_WM8400 is not set
|
||||||
|
# CONFIG_MFD_WM831X is not set
|
||||||
# CONFIG_MFD_WM8350_I2C is not set
|
# CONFIG_MFD_WM8350_I2C is not set
|
||||||
|
# CONFIG_MFD_PCF50633 is not set
|
||||||
|
# CONFIG_MFD_MC13783 is not set
|
||||||
|
# CONFIG_AB3100_CORE is not set
|
||||||
|
# CONFIG_EZX_PCAP is not set
|
||||||
# CONFIG_REGULATOR is not set
|
# CONFIG_REGULATOR is not set
|
||||||
|
# CONFIG_MEDIA_SUPPORT is not set
|
||||||
#
|
|
||||||
# Multimedia devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia core support
|
|
||||||
#
|
|
||||||
# CONFIG_VIDEO_DEV is not set
|
|
||||||
# CONFIG_DVB_CORE is not set
|
|
||||||
# CONFIG_VIDEO_MEDIA is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multimedia drivers
|
|
||||||
#
|
|
||||||
CONFIG_DAB=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
|
@ -928,24 +964,24 @@ CONFIG_FB_CFB_IMAGEBLIT=y
|
||||||
# CONFIG_FB_BFIN_T350MCQB is not set
|
# CONFIG_FB_BFIN_T350MCQB is not set
|
||||||
# CONFIG_FB_BFIN_LQ035Q1 is not set
|
# CONFIG_FB_BFIN_LQ035Q1 is not set
|
||||||
CONFIG_FB_BF537_LQ035=y
|
CONFIG_FB_BF537_LQ035=y
|
||||||
CONFIG_LQ035_SLAVE_ADDR=0x58
|
|
||||||
CONFIG_FB_BFIN_LANDSCAPE=y
|
|
||||||
# CONFIG_FB_BFIN_BGR is not set
|
|
||||||
# CONFIG_FB_BFIN_7393 is not set
|
# CONFIG_FB_BFIN_7393 is not set
|
||||||
# CONFIG_FB_HITACHI_TX09 is not set
|
# CONFIG_FB_HITACHI_TX09 is not set
|
||||||
# CONFIG_FB_S1D13XXX is not set
|
# CONFIG_FB_S1D13XXX is not set
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
# CONFIG_FB_METRONOME is not set
|
# CONFIG_FB_METRONOME is not set
|
||||||
# CONFIG_FB_MB862XX is not set
|
# CONFIG_FB_MB862XX is not set
|
||||||
|
# CONFIG_FB_BROADSHEET is not set
|
||||||
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
||||||
CONFIG_LCD_CLASS_DEVICE=y
|
CONFIG_LCD_CLASS_DEVICE=y
|
||||||
|
# CONFIG_LCD_LMS283GF05 is not set
|
||||||
# CONFIG_LCD_LTV350QV is not set
|
# CONFIG_LCD_LTV350QV is not set
|
||||||
# CONFIG_LCD_ILI9320 is not set
|
# CONFIG_LCD_ILI9320 is not set
|
||||||
# CONFIG_LCD_TDO24M is not set
|
# CONFIG_LCD_TDO24M is not set
|
||||||
# CONFIG_LCD_VGG2432A4 is not set
|
# CONFIG_LCD_VGG2432A4 is not set
|
||||||
# CONFIG_LCD_PLATFORM is not set
|
# CONFIG_LCD_PLATFORM is not set
|
||||||
CONFIG_BACKLIGHT_CLASS_DEVICE=y
|
CONFIG_BACKLIGHT_CLASS_DEVICE=y
|
||||||
# CONFIG_BACKLIGHT_CORGI is not set
|
CONFIG_BACKLIGHT_GENERIC=y
|
||||||
|
# CONFIG_BACKLIGHT_ADP8870 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Display device support
|
# Display device support
|
||||||
|
@ -954,6 +990,7 @@ CONFIG_BACKLIGHT_CLASS_DEVICE=y
|
||||||
# CONFIG_LOGO is not set
|
# CONFIG_LOGO is not set
|
||||||
CONFIG_SOUND=y
|
CONFIG_SOUND=y
|
||||||
CONFIG_SOUND_OSS_CORE=y
|
CONFIG_SOUND_OSS_CORE=y
|
||||||
|
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
|
||||||
CONFIG_SND=m
|
CONFIG_SND=m
|
||||||
# CONFIG_SND_SEQUENCER is not set
|
# CONFIG_SND_SEQUENCER is not set
|
||||||
# CONFIG_SND_MIXER_OSS is not set
|
# CONFIG_SND_MIXER_OSS is not set
|
||||||
|
@ -963,6 +1000,11 @@ CONFIG_SND=m
|
||||||
# CONFIG_SND_VERBOSE_PROCFS is not set
|
# CONFIG_SND_VERBOSE_PROCFS is not set
|
||||||
# CONFIG_SND_VERBOSE_PRINTK is not set
|
# CONFIG_SND_VERBOSE_PRINTK is not set
|
||||||
# CONFIG_SND_DEBUG is not set
|
# CONFIG_SND_DEBUG is not set
|
||||||
|
# CONFIG_SND_RAWMIDI_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL3_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_OPL4_LIB_SEQ is not set
|
||||||
|
# CONFIG_SND_SBAWE_SEQ is not set
|
||||||
|
# CONFIG_SND_EMU10K1_SEQ is not set
|
||||||
CONFIG_SND_DRIVERS=y
|
CONFIG_SND_DRIVERS=y
|
||||||
# CONFIG_SND_DUMMY is not set
|
# CONFIG_SND_DUMMY is not set
|
||||||
# CONFIG_SND_MTPAV is not set
|
# CONFIG_SND_MTPAV is not set
|
||||||
|
@ -973,7 +1015,6 @@ CONFIG_SND_SPI=y
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
# CONFIG_SND_BLACKFIN_AD1836 is not set
|
|
||||||
# CONFIG_SND_BFIN_AD73322 is not set
|
# CONFIG_SND_BFIN_AD73322 is not set
|
||||||
# CONFIG_SND_SOC is not set
|
# CONFIG_SND_SOC is not set
|
||||||
CONFIG_SOUND_PRIME=y
|
CONFIG_SOUND_PRIME=y
|
||||||
|
@ -993,9 +1034,13 @@ CONFIG_USB_ARCH_HAS_HCD=y
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
|
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
|
||||||
#
|
#
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# OTG and related infrastructure
|
||||||
|
#
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
@ -1031,6 +1076,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_S35390A is not set
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
# CONFIG_RTC_DRV_FM3130 is not set
|
# CONFIG_RTC_DRV_FM3130 is not set
|
||||||
# CONFIG_RTC_DRV_RX8581 is not set
|
# CONFIG_RTC_DRV_RX8581 is not set
|
||||||
|
# CONFIG_RTC_DRV_RX8025 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
|
@ -1042,6 +1088,7 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
# CONFIG_RTC_DRV_R9701 is not set
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
# CONFIG_RTC_DRV_DS3234 is not set
|
# CONFIG_RTC_DRV_DS3234 is not set
|
||||||
|
# CONFIG_RTC_DRV_PCF2123 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
|
@ -1062,9 +1109,20 @@ CONFIG_RTC_INTF_DEV=y
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
# CONFIG_DMADEVICES is not set
|
# CONFIG_DMADEVICES is not set
|
||||||
|
# CONFIG_AUXDISPLAY is not set
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# TI VLYNQ
|
||||||
|
#
|
||||||
# CONFIG_STAGING is not set
|
# CONFIG_STAGING is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Firmware Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_FIRMWARE_MEMMAP is not set
|
||||||
|
# CONFIG_SIGMA is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
@ -1078,9 +1136,13 @@ CONFIG_FS_MBCACHE=y
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
CONFIG_FILE_LOCKING=y
|
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
|
# CONFIG_GFS2_FS is not set
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
|
# CONFIG_BTRFS_FS is not set
|
||||||
|
# CONFIG_NILFS2_FS is not set
|
||||||
|
CONFIG_FILE_LOCKING=y
|
||||||
|
CONFIG_FSNOTIFY=y
|
||||||
# CONFIG_DNOTIFY is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
|
@ -1089,6 +1151,11 @@ CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Caches
|
||||||
|
#
|
||||||
|
# CONFIG_FSCACHE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# CD-ROM/DVD Filesystems
|
# CD-ROM/DVD Filesystems
|
||||||
#
|
#
|
||||||
|
@ -1108,13 +1175,9 @@ CONFIG_INOTIFY_USER=y
|
||||||
CONFIG_PROC_FS=y
|
CONFIG_PROC_FS=y
|
||||||
CONFIG_PROC_SYSCTL=y
|
CONFIG_PROC_SYSCTL=y
|
||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
CONFIG_MISC_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Miscellaneous filesystems
|
|
||||||
#
|
|
||||||
# CONFIG_ADFS_FS is not set
|
# CONFIG_ADFS_FS is not set
|
||||||
# CONFIG_AFFS_FS is not set
|
# CONFIG_AFFS_FS is not set
|
||||||
# CONFIG_HFS_FS is not set
|
# CONFIG_HFS_FS is not set
|
||||||
|
@ -1123,17 +1186,8 @@ CONFIG_SYSFS=y
|
||||||
# CONFIG_BFS_FS is not set
|
# CONFIG_BFS_FS is not set
|
||||||
# CONFIG_EFS_FS is not set
|
# CONFIG_EFS_FS is not set
|
||||||
# CONFIG_JFFS2_FS is not set
|
# CONFIG_JFFS2_FS is not set
|
||||||
CONFIG_YAFFS_FS=y
|
|
||||||
CONFIG_YAFFS_YAFFS1=y
|
|
||||||
# CONFIG_YAFFS_9BYTE_TAGS is not set
|
|
||||||
# CONFIG_YAFFS_DOES_ECC is not set
|
|
||||||
CONFIG_YAFFS_YAFFS2=y
|
|
||||||
CONFIG_YAFFS_AUTO_YAFFS2=y
|
|
||||||
# CONFIG_YAFFS_DISABLE_LAZY_LOAD is not set
|
|
||||||
# CONFIG_YAFFS_DISABLE_WIDE_TNODES is not set
|
|
||||||
# CONFIG_YAFFS_ALWAYS_CHECK_CHUNK_ERASED is not set
|
|
||||||
CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_OMFS_FS is not set
|
# CONFIG_OMFS_FS is not set
|
||||||
|
@ -1152,7 +1206,6 @@ CONFIG_LOCKD=m
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
CONFIG_NFS_COMMON=y
|
CONFIG_NFS_COMMON=y
|
||||||
CONFIG_SUNRPC=m
|
CONFIG_SUNRPC=m
|
||||||
# CONFIG_SUNRPC_REGISTER_V4 is not set
|
|
||||||
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
# CONFIG_RPCSEC_GSS_KRB5 is not set
|
||||||
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
# CONFIG_RPCSEC_GSS_SPKM3 is not set
|
||||||
CONFIG_SMB_FS=m
|
CONFIG_SMB_FS=m
|
||||||
|
@ -1217,18 +1270,19 @@ CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
CONFIG_FRAME_WARN=1024
|
CONFIG_FRAME_WARN=1024
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
# CONFIG_DEBUG_FS is not set
|
# CONFIG_DEBUG_FS is not set
|
||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
|
CONFIG_DEBUG_SECTION_MISMATCH=y
|
||||||
# CONFIG_DEBUG_KERNEL is not set
|
# CONFIG_DEBUG_KERNEL is not set
|
||||||
# CONFIG_DEBUG_BUGVERBOSE is not set
|
# CONFIG_DEBUG_BUGVERBOSE is not set
|
||||||
# CONFIG_DEBUG_MEMORY_INIT is not set
|
# CONFIG_DEBUG_MEMORY_INIT is not set
|
||||||
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
# CONFIG_RCU_CPU_STALL_DETECTOR is not set
|
||||||
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
#
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
# Tracers
|
CONFIG_TRACING_SUPPORT=y
|
||||||
#
|
# CONFIG_FTRACE is not set
|
||||||
# CONFIG_DYNAMIC_PRINTK_DEBUG is not set
|
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_HAVE_ARCH_KGDB=y
|
CONFIG_HAVE_ARCH_KGDB=y
|
||||||
CONFIG_DEBUG_VERBOSE=y
|
CONFIG_DEBUG_VERBOSE=y
|
||||||
|
@ -1245,6 +1299,7 @@ CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION=0
|
||||||
# CONFIG_EARLY_PRINTK is not set
|
# CONFIG_EARLY_PRINTK is not set
|
||||||
# CONFIG_CPLB_INFO is not set
|
# CONFIG_CPLB_INFO is not set
|
||||||
# CONFIG_ACCESS_CHECK is not set
|
# CONFIG_ACCESS_CHECK is not set
|
||||||
|
# CONFIG_BFIN_ISRAM_SELF_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Security options
|
# Security options
|
||||||
|
@ -1253,14 +1308,14 @@ CONFIG_DEBUG_BFIN_HWTRACE_COMPRESSION=0
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITYFS is not set
|
# CONFIG_SECURITYFS is not set
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
|
# CONFIG_SECURITY_PATH is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR=0
|
# CONFIG_SECURITY_TOMOYO is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Crypto core or helper
|
# Crypto core or helper
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_FIPS is not set
|
|
||||||
# CONFIG_CRYPTO_MANAGER is not set
|
# CONFIG_CRYPTO_MANAGER is not set
|
||||||
# CONFIG_CRYPTO_MANAGER2 is not set
|
# CONFIG_CRYPTO_MANAGER2 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
@ -1292,11 +1347,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_HMAC is not set
|
# CONFIG_CRYPTO_HMAC is not set
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
|
# CONFIG_CRYPTO_VMAC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Digest
|
# Digest
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
|
# CONFIG_CRYPTO_GHASH is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
# CONFIG_CRYPTO_MD5 is not set
|
# CONFIG_CRYPTO_MD5 is not set
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
|
@ -1333,6 +1390,7 @@ CONFIG_CRYPTO=y
|
||||||
# Compression
|
# Compression
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_DEFLATE is not set
|
# CONFIG_CRYPTO_DEFLATE is not set
|
||||||
|
# CONFIG_CRYPTO_ZLIB is not set
|
||||||
# CONFIG_CRYPTO_LZO is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -1340,11 +1398,13 @@ CONFIG_CRYPTO=y
|
||||||
#
|
#
|
||||||
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
# CONFIG_CRYPTO_ANSI_CPRNG is not set
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
# CONFIG_BINARY_PRINTF is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_T10DIF is not set
|
# CONFIG_CRC_T10DIF is not set
|
||||||
|
@ -1356,3 +1416,4 @@ CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
CONFIG_HAS_DMA=y
|
CONFIG_HAS_DMA=y
|
||||||
|
CONFIG_NLATTR=y
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -8,6 +8,9 @@
|
||||||
#ifndef BFIN_LQ035Q1_H
|
#ifndef BFIN_LQ035Q1_H
|
||||||
#define BFIN_LQ035Q1_H
|
#define BFIN_LQ035Q1_H
|
||||||
|
|
||||||
|
/*
|
||||||
|
* LCD Modes
|
||||||
|
*/
|
||||||
#define LQ035_RL (0 << 8) /* Right -> Left Scan */
|
#define LQ035_RL (0 << 8) /* Right -> Left Scan */
|
||||||
#define LQ035_LR (1 << 8) /* Left -> Right Scan */
|
#define LQ035_LR (1 << 8) /* Left -> Right Scan */
|
||||||
#define LQ035_TB (1 << 9) /* Top -> Botton Scan */
|
#define LQ035_TB (1 << 9) /* Top -> Botton Scan */
|
||||||
|
@ -17,9 +20,18 @@
|
||||||
#define LQ035_NORM (1 << 13) /* Reversal */
|
#define LQ035_NORM (1 << 13) /* Reversal */
|
||||||
#define LQ035_REV (0 << 13) /* Reversal */
|
#define LQ035_REV (0 << 13) /* Reversal */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PPI Modes
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define USE_RGB565_16_BIT_PPI 1
|
||||||
|
#define USE_RGB565_8_BIT_PPI 2
|
||||||
|
#define USE_RGB888_8_BIT_PPI 3
|
||||||
|
|
||||||
struct bfin_lq035q1fb_disp_info {
|
struct bfin_lq035q1fb_disp_info {
|
||||||
|
|
||||||
unsigned mode;
|
unsigned mode;
|
||||||
|
unsigned ppi_mode;
|
||||||
/* GPIOs */
|
/* GPIOs */
|
||||||
int use_bl;
|
int use_bl;
|
||||||
unsigned gpio_bl;
|
unsigned gpio_bl;
|
||||||
|
|
|
@ -0,0 +1,725 @@
|
||||||
|
/*
|
||||||
|
* bfin_can.h - interface to Blackfin CANs
|
||||||
|
*
|
||||||
|
* Copyright 2004-2009 Analog Devices Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __ASM_BFIN_CAN_H__
|
||||||
|
#define __ASM_BFIN_CAN_H__
|
||||||
|
|
||||||
|
/*
|
||||||
|
* transmit and receive channels
|
||||||
|
*/
|
||||||
|
#define TRANSMIT_CHL 24
|
||||||
|
#define RECEIVE_STD_CHL 0
|
||||||
|
#define RECEIVE_EXT_CHL 4
|
||||||
|
#define RECEIVE_RTR_CHL 8
|
||||||
|
#define RECEIVE_EXT_RTR_CHL 12
|
||||||
|
#define MAX_CHL_NUMBER 32
|
||||||
|
|
||||||
|
/*
|
||||||
|
* All Blackfin system MMRs are padded to 32bits even if the register
|
||||||
|
* itself is only 16bits. So use a helper macro to streamline this.
|
||||||
|
*/
|
||||||
|
#define __BFP(m) u16 m; u16 __pad_##m
|
||||||
|
|
||||||
|
/*
|
||||||
|
* bfin can registers layout
|
||||||
|
*/
|
||||||
|
struct bfin_can_mask_regs {
|
||||||
|
__BFP(aml);
|
||||||
|
__BFP(amh);
|
||||||
|
};
|
||||||
|
|
||||||
|
struct bfin_can_channel_regs {
|
||||||
|
u16 data[8];
|
||||||
|
__BFP(dlc);
|
||||||
|
__BFP(tsv);
|
||||||
|
__BFP(id0);
|
||||||
|
__BFP(id1);
|
||||||
|
};
|
||||||
|
|
||||||
|
struct bfin_can_regs {
|
||||||
|
/*
|
||||||
|
* global control and status registers
|
||||||
|
*/
|
||||||
|
__BFP(mc1); /* offset 0x00 */
|
||||||
|
__BFP(md1); /* offset 0x04 */
|
||||||
|
__BFP(trs1); /* offset 0x08 */
|
||||||
|
__BFP(trr1); /* offset 0x0c */
|
||||||
|
__BFP(ta1); /* offset 0x10 */
|
||||||
|
__BFP(aa1); /* offset 0x14 */
|
||||||
|
__BFP(rmp1); /* offset 0x18 */
|
||||||
|
__BFP(rml1); /* offset 0x1c */
|
||||||
|
__BFP(mbtif1); /* offset 0x20 */
|
||||||
|
__BFP(mbrif1); /* offset 0x24 */
|
||||||
|
__BFP(mbim1); /* offset 0x28 */
|
||||||
|
__BFP(rfh1); /* offset 0x2c */
|
||||||
|
__BFP(opss1); /* offset 0x30 */
|
||||||
|
u32 __pad1[3];
|
||||||
|
__BFP(mc2); /* offset 0x40 */
|
||||||
|
__BFP(md2); /* offset 0x44 */
|
||||||
|
__BFP(trs2); /* offset 0x48 */
|
||||||
|
__BFP(trr2); /* offset 0x4c */
|
||||||
|
__BFP(ta2); /* offset 0x50 */
|
||||||
|
__BFP(aa2); /* offset 0x54 */
|
||||||
|
__BFP(rmp2); /* offset 0x58 */
|
||||||
|
__BFP(rml2); /* offset 0x5c */
|
||||||
|
__BFP(mbtif2); /* offset 0x60 */
|
||||||
|
__BFP(mbrif2); /* offset 0x64 */
|
||||||
|
__BFP(mbim2); /* offset 0x68 */
|
||||||
|
__BFP(rfh2); /* offset 0x6c */
|
||||||
|
__BFP(opss2); /* offset 0x70 */
|
||||||
|
u32 __pad2[3];
|
||||||
|
__BFP(clock); /* offset 0x80 */
|
||||||
|
__BFP(timing); /* offset 0x84 */
|
||||||
|
__BFP(debug); /* offset 0x88 */
|
||||||
|
__BFP(status); /* offset 0x8c */
|
||||||
|
__BFP(cec); /* offset 0x90 */
|
||||||
|
__BFP(gis); /* offset 0x94 */
|
||||||
|
__BFP(gim); /* offset 0x98 */
|
||||||
|
__BFP(gif); /* offset 0x9c */
|
||||||
|
__BFP(control); /* offset 0xa0 */
|
||||||
|
__BFP(intr); /* offset 0xa4 */
|
||||||
|
u32 __pad3[1];
|
||||||
|
__BFP(mbtd); /* offset 0xac */
|
||||||
|
__BFP(ewr); /* offset 0xb0 */
|
||||||
|
__BFP(esr); /* offset 0xb4 */
|
||||||
|
u32 __pad4[2];
|
||||||
|
__BFP(ucreg); /* offset 0xc0 */
|
||||||
|
__BFP(uccnt); /* offset 0xc4 */
|
||||||
|
__BFP(ucrc); /* offset 0xc8 */
|
||||||
|
__BFP(uccnf); /* offset 0xcc */
|
||||||
|
u32 __pad5[12];
|
||||||
|
|
||||||
|
/*
|
||||||
|
* channel(mailbox) mask and message registers
|
||||||
|
*/
|
||||||
|
struct bfin_can_mask_regs msk[MAX_CHL_NUMBER]; /* offset 0x100 */
|
||||||
|
struct bfin_can_channel_regs chl[MAX_CHL_NUMBER]; /* offset 0x200 */
|
||||||
|
};
|
||||||
|
|
||||||
|
#undef __BFP
|
||||||
|
|
||||||
|
/* CAN_CONTROL Masks */
|
||||||
|
#define SRS 0x0001 /* Software Reset */
|
||||||
|
#define DNM 0x0002 /* Device Net Mode */
|
||||||
|
#define ABO 0x0004 /* Auto-Bus On Enable */
|
||||||
|
#define TXPRIO 0x0008 /* TX Priority (Priority/Mailbox*) */
|
||||||
|
#define WBA 0x0010 /* Wake-Up On CAN Bus Activity Enable */
|
||||||
|
#define SMR 0x0020 /* Sleep Mode Request */
|
||||||
|
#define CSR 0x0040 /* CAN Suspend Mode Request */
|
||||||
|
#define CCR 0x0080 /* CAN Configuration Mode Request */
|
||||||
|
|
||||||
|
/* CAN_STATUS Masks */
|
||||||
|
#define WT 0x0001 /* TX Warning Flag */
|
||||||
|
#define WR 0x0002 /* RX Warning Flag */
|
||||||
|
#define EP 0x0004 /* Error Passive Mode */
|
||||||
|
#define EBO 0x0008 /* Error Bus Off Mode */
|
||||||
|
#define SMA 0x0020 /* Sleep Mode Acknowledge */
|
||||||
|
#define CSA 0x0040 /* Suspend Mode Acknowledge */
|
||||||
|
#define CCA 0x0080 /* Configuration Mode Acknowledge */
|
||||||
|
#define MBPTR 0x1F00 /* Mailbox Pointer */
|
||||||
|
#define TRM 0x4000 /* Transmit Mode */
|
||||||
|
#define REC 0x8000 /* Receive Mode */
|
||||||
|
|
||||||
|
/* CAN_CLOCK Masks */
|
||||||
|
#define BRP 0x03FF /* Bit-Rate Pre-Scaler */
|
||||||
|
|
||||||
|
/* CAN_TIMING Masks */
|
||||||
|
#define TSEG1 0x000F /* Time Segment 1 */
|
||||||
|
#define TSEG2 0x0070 /* Time Segment 2 */
|
||||||
|
#define SAM 0x0080 /* Sampling */
|
||||||
|
#define SJW 0x0300 /* Synchronization Jump Width */
|
||||||
|
|
||||||
|
/* CAN_DEBUG Masks */
|
||||||
|
#define DEC 0x0001 /* Disable CAN Error Counters */
|
||||||
|
#define DRI 0x0002 /* Disable CAN RX Input */
|
||||||
|
#define DTO 0x0004 /* Disable CAN TX Output */
|
||||||
|
#define DIL 0x0008 /* Disable CAN Internal Loop */
|
||||||
|
#define MAA 0x0010 /* Mode Auto-Acknowledge Enable */
|
||||||
|
#define MRB 0x0020 /* Mode Read Back Enable */
|
||||||
|
#define CDE 0x8000 /* CAN Debug Enable */
|
||||||
|
|
||||||
|
/* CAN_CEC Masks */
|
||||||
|
#define RXECNT 0x00FF /* Receive Error Counter */
|
||||||
|
#define TXECNT 0xFF00 /* Transmit Error Counter */
|
||||||
|
|
||||||
|
/* CAN_INTR Masks */
|
||||||
|
#define MBRIRQ 0x0001 /* Mailbox Receive Interrupt */
|
||||||
|
#define MBTIRQ 0x0002 /* Mailbox Transmit Interrupt */
|
||||||
|
#define GIRQ 0x0004 /* Global Interrupt */
|
||||||
|
#define SMACK 0x0008 /* Sleep Mode Acknowledge */
|
||||||
|
#define CANTX 0x0040 /* CAN TX Bus Value */
|
||||||
|
#define CANRX 0x0080 /* CAN RX Bus Value */
|
||||||
|
|
||||||
|
/* CAN_MBxx_ID1 and CAN_MBxx_ID0 Masks */
|
||||||
|
#define DFC 0xFFFF /* Data Filtering Code (If Enabled) (ID0) */
|
||||||
|
#define EXTID_LO 0xFFFF /* Lower 16 Bits of Extended Identifier (ID0) */
|
||||||
|
#define EXTID_HI 0x0003 /* Upper 2 Bits of Extended Identifier (ID1) */
|
||||||
|
#define BASEID 0x1FFC /* Base Identifier */
|
||||||
|
#define IDE 0x2000 /* Identifier Extension */
|
||||||
|
#define RTR 0x4000 /* Remote Frame Transmission Request */
|
||||||
|
#define AME 0x8000 /* Acceptance Mask Enable */
|
||||||
|
|
||||||
|
/* CAN_MBxx_TIMESTAMP Masks */
|
||||||
|
#define TSV 0xFFFF /* Timestamp */
|
||||||
|
|
||||||
|
/* CAN_MBxx_LENGTH Masks */
|
||||||
|
#define DLC 0x000F /* Data Length Code */
|
||||||
|
|
||||||
|
/* CAN_AMxxH and CAN_AMxxL Masks */
|
||||||
|
#define DFM 0xFFFF /* Data Field Mask (If Enabled) (CAN_AMxxL) */
|
||||||
|
#define EXTID_LO 0xFFFF /* Lower 16 Bits of Extended Identifier (CAN_AMxxL) */
|
||||||
|
#define EXTID_HI 0x0003 /* Upper 2 Bits of Extended Identifier (CAN_AMxxH) */
|
||||||
|
#define BASEID 0x1FFC /* Base Identifier */
|
||||||
|
#define AMIDE 0x2000 /* Acceptance Mask ID Extension Enable */
|
||||||
|
#define FMD 0x4000 /* Full Mask Data Field Enable */
|
||||||
|
#define FDF 0x8000 /* Filter On Data Field Enable */
|
||||||
|
|
||||||
|
/* CAN_MC1 Masks */
|
||||||
|
#define MC0 0x0001 /* Enable Mailbox 0 */
|
||||||
|
#define MC1 0x0002 /* Enable Mailbox 1 */
|
||||||
|
#define MC2 0x0004 /* Enable Mailbox 2 */
|
||||||
|
#define MC3 0x0008 /* Enable Mailbox 3 */
|
||||||
|
#define MC4 0x0010 /* Enable Mailbox 4 */
|
||||||
|
#define MC5 0x0020 /* Enable Mailbox 5 */
|
||||||
|
#define MC6 0x0040 /* Enable Mailbox 6 */
|
||||||
|
#define MC7 0x0080 /* Enable Mailbox 7 */
|
||||||
|
#define MC8 0x0100 /* Enable Mailbox 8 */
|
||||||
|
#define MC9 0x0200 /* Enable Mailbox 9 */
|
||||||
|
#define MC10 0x0400 /* Enable Mailbox 10 */
|
||||||
|
#define MC11 0x0800 /* Enable Mailbox 11 */
|
||||||
|
#define MC12 0x1000 /* Enable Mailbox 12 */
|
||||||
|
#define MC13 0x2000 /* Enable Mailbox 13 */
|
||||||
|
#define MC14 0x4000 /* Enable Mailbox 14 */
|
||||||
|
#define MC15 0x8000 /* Enable Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_MC2 Masks */
|
||||||
|
#define MC16 0x0001 /* Enable Mailbox 16 */
|
||||||
|
#define MC17 0x0002 /* Enable Mailbox 17 */
|
||||||
|
#define MC18 0x0004 /* Enable Mailbox 18 */
|
||||||
|
#define MC19 0x0008 /* Enable Mailbox 19 */
|
||||||
|
#define MC20 0x0010 /* Enable Mailbox 20 */
|
||||||
|
#define MC21 0x0020 /* Enable Mailbox 21 */
|
||||||
|
#define MC22 0x0040 /* Enable Mailbox 22 */
|
||||||
|
#define MC23 0x0080 /* Enable Mailbox 23 */
|
||||||
|
#define MC24 0x0100 /* Enable Mailbox 24 */
|
||||||
|
#define MC25 0x0200 /* Enable Mailbox 25 */
|
||||||
|
#define MC26 0x0400 /* Enable Mailbox 26 */
|
||||||
|
#define MC27 0x0800 /* Enable Mailbox 27 */
|
||||||
|
#define MC28 0x1000 /* Enable Mailbox 28 */
|
||||||
|
#define MC29 0x2000 /* Enable Mailbox 29 */
|
||||||
|
#define MC30 0x4000 /* Enable Mailbox 30 */
|
||||||
|
#define MC31 0x8000 /* Enable Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_MD1 Masks */
|
||||||
|
#define MD0 0x0001 /* Enable Mailbox 0 For Receive */
|
||||||
|
#define MD1 0x0002 /* Enable Mailbox 1 For Receive */
|
||||||
|
#define MD2 0x0004 /* Enable Mailbox 2 For Receive */
|
||||||
|
#define MD3 0x0008 /* Enable Mailbox 3 For Receive */
|
||||||
|
#define MD4 0x0010 /* Enable Mailbox 4 For Receive */
|
||||||
|
#define MD5 0x0020 /* Enable Mailbox 5 For Receive */
|
||||||
|
#define MD6 0x0040 /* Enable Mailbox 6 For Receive */
|
||||||
|
#define MD7 0x0080 /* Enable Mailbox 7 For Receive */
|
||||||
|
#define MD8 0x0100 /* Enable Mailbox 8 For Receive */
|
||||||
|
#define MD9 0x0200 /* Enable Mailbox 9 For Receive */
|
||||||
|
#define MD10 0x0400 /* Enable Mailbox 10 For Receive */
|
||||||
|
#define MD11 0x0800 /* Enable Mailbox 11 For Receive */
|
||||||
|
#define MD12 0x1000 /* Enable Mailbox 12 For Receive */
|
||||||
|
#define MD13 0x2000 /* Enable Mailbox 13 For Receive */
|
||||||
|
#define MD14 0x4000 /* Enable Mailbox 14 For Receive */
|
||||||
|
#define MD15 0x8000 /* Enable Mailbox 15 For Receive */
|
||||||
|
|
||||||
|
/* CAN_MD2 Masks */
|
||||||
|
#define MD16 0x0001 /* Enable Mailbox 16 For Receive */
|
||||||
|
#define MD17 0x0002 /* Enable Mailbox 17 For Receive */
|
||||||
|
#define MD18 0x0004 /* Enable Mailbox 18 For Receive */
|
||||||
|
#define MD19 0x0008 /* Enable Mailbox 19 For Receive */
|
||||||
|
#define MD20 0x0010 /* Enable Mailbox 20 For Receive */
|
||||||
|
#define MD21 0x0020 /* Enable Mailbox 21 For Receive */
|
||||||
|
#define MD22 0x0040 /* Enable Mailbox 22 For Receive */
|
||||||
|
#define MD23 0x0080 /* Enable Mailbox 23 For Receive */
|
||||||
|
#define MD24 0x0100 /* Enable Mailbox 24 For Receive */
|
||||||
|
#define MD25 0x0200 /* Enable Mailbox 25 For Receive */
|
||||||
|
#define MD26 0x0400 /* Enable Mailbox 26 For Receive */
|
||||||
|
#define MD27 0x0800 /* Enable Mailbox 27 For Receive */
|
||||||
|
#define MD28 0x1000 /* Enable Mailbox 28 For Receive */
|
||||||
|
#define MD29 0x2000 /* Enable Mailbox 29 For Receive */
|
||||||
|
#define MD30 0x4000 /* Enable Mailbox 30 For Receive */
|
||||||
|
#define MD31 0x8000 /* Enable Mailbox 31 For Receive */
|
||||||
|
|
||||||
|
/* CAN_RMP1 Masks */
|
||||||
|
#define RMP0 0x0001 /* RX Message Pending In Mailbox 0 */
|
||||||
|
#define RMP1 0x0002 /* RX Message Pending In Mailbox 1 */
|
||||||
|
#define RMP2 0x0004 /* RX Message Pending In Mailbox 2 */
|
||||||
|
#define RMP3 0x0008 /* RX Message Pending In Mailbox 3 */
|
||||||
|
#define RMP4 0x0010 /* RX Message Pending In Mailbox 4 */
|
||||||
|
#define RMP5 0x0020 /* RX Message Pending In Mailbox 5 */
|
||||||
|
#define RMP6 0x0040 /* RX Message Pending In Mailbox 6 */
|
||||||
|
#define RMP7 0x0080 /* RX Message Pending In Mailbox 7 */
|
||||||
|
#define RMP8 0x0100 /* RX Message Pending In Mailbox 8 */
|
||||||
|
#define RMP9 0x0200 /* RX Message Pending In Mailbox 9 */
|
||||||
|
#define RMP10 0x0400 /* RX Message Pending In Mailbox 10 */
|
||||||
|
#define RMP11 0x0800 /* RX Message Pending In Mailbox 11 */
|
||||||
|
#define RMP12 0x1000 /* RX Message Pending In Mailbox 12 */
|
||||||
|
#define RMP13 0x2000 /* RX Message Pending In Mailbox 13 */
|
||||||
|
#define RMP14 0x4000 /* RX Message Pending In Mailbox 14 */
|
||||||
|
#define RMP15 0x8000 /* RX Message Pending In Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_RMP2 Masks */
|
||||||
|
#define RMP16 0x0001 /* RX Message Pending In Mailbox 16 */
|
||||||
|
#define RMP17 0x0002 /* RX Message Pending In Mailbox 17 */
|
||||||
|
#define RMP18 0x0004 /* RX Message Pending In Mailbox 18 */
|
||||||
|
#define RMP19 0x0008 /* RX Message Pending In Mailbox 19 */
|
||||||
|
#define RMP20 0x0010 /* RX Message Pending In Mailbox 20 */
|
||||||
|
#define RMP21 0x0020 /* RX Message Pending In Mailbox 21 */
|
||||||
|
#define RMP22 0x0040 /* RX Message Pending In Mailbox 22 */
|
||||||
|
#define RMP23 0x0080 /* RX Message Pending In Mailbox 23 */
|
||||||
|
#define RMP24 0x0100 /* RX Message Pending In Mailbox 24 */
|
||||||
|
#define RMP25 0x0200 /* RX Message Pending In Mailbox 25 */
|
||||||
|
#define RMP26 0x0400 /* RX Message Pending In Mailbox 26 */
|
||||||
|
#define RMP27 0x0800 /* RX Message Pending In Mailbox 27 */
|
||||||
|
#define RMP28 0x1000 /* RX Message Pending In Mailbox 28 */
|
||||||
|
#define RMP29 0x2000 /* RX Message Pending In Mailbox 29 */
|
||||||
|
#define RMP30 0x4000 /* RX Message Pending In Mailbox 30 */
|
||||||
|
#define RMP31 0x8000 /* RX Message Pending In Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_RML1 Masks */
|
||||||
|
#define RML0 0x0001 /* RX Message Lost In Mailbox 0 */
|
||||||
|
#define RML1 0x0002 /* RX Message Lost In Mailbox 1 */
|
||||||
|
#define RML2 0x0004 /* RX Message Lost In Mailbox 2 */
|
||||||
|
#define RML3 0x0008 /* RX Message Lost In Mailbox 3 */
|
||||||
|
#define RML4 0x0010 /* RX Message Lost In Mailbox 4 */
|
||||||
|
#define RML5 0x0020 /* RX Message Lost In Mailbox 5 */
|
||||||
|
#define RML6 0x0040 /* RX Message Lost In Mailbox 6 */
|
||||||
|
#define RML7 0x0080 /* RX Message Lost In Mailbox 7 */
|
||||||
|
#define RML8 0x0100 /* RX Message Lost In Mailbox 8 */
|
||||||
|
#define RML9 0x0200 /* RX Message Lost In Mailbox 9 */
|
||||||
|
#define RML10 0x0400 /* RX Message Lost In Mailbox 10 */
|
||||||
|
#define RML11 0x0800 /* RX Message Lost In Mailbox 11 */
|
||||||
|
#define RML12 0x1000 /* RX Message Lost In Mailbox 12 */
|
||||||
|
#define RML13 0x2000 /* RX Message Lost In Mailbox 13 */
|
||||||
|
#define RML14 0x4000 /* RX Message Lost In Mailbox 14 */
|
||||||
|
#define RML15 0x8000 /* RX Message Lost In Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_RML2 Masks */
|
||||||
|
#define RML16 0x0001 /* RX Message Lost In Mailbox 16 */
|
||||||
|
#define RML17 0x0002 /* RX Message Lost In Mailbox 17 */
|
||||||
|
#define RML18 0x0004 /* RX Message Lost In Mailbox 18 */
|
||||||
|
#define RML19 0x0008 /* RX Message Lost In Mailbox 19 */
|
||||||
|
#define RML20 0x0010 /* RX Message Lost In Mailbox 20 */
|
||||||
|
#define RML21 0x0020 /* RX Message Lost In Mailbox 21 */
|
||||||
|
#define RML22 0x0040 /* RX Message Lost In Mailbox 22 */
|
||||||
|
#define RML23 0x0080 /* RX Message Lost In Mailbox 23 */
|
||||||
|
#define RML24 0x0100 /* RX Message Lost In Mailbox 24 */
|
||||||
|
#define RML25 0x0200 /* RX Message Lost In Mailbox 25 */
|
||||||
|
#define RML26 0x0400 /* RX Message Lost In Mailbox 26 */
|
||||||
|
#define RML27 0x0800 /* RX Message Lost In Mailbox 27 */
|
||||||
|
#define RML28 0x1000 /* RX Message Lost In Mailbox 28 */
|
||||||
|
#define RML29 0x2000 /* RX Message Lost In Mailbox 29 */
|
||||||
|
#define RML30 0x4000 /* RX Message Lost In Mailbox 30 */
|
||||||
|
#define RML31 0x8000 /* RX Message Lost In Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_OPSS1 Masks */
|
||||||
|
#define OPSS0 0x0001 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 0 */
|
||||||
|
#define OPSS1 0x0002 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 1 */
|
||||||
|
#define OPSS2 0x0004 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 2 */
|
||||||
|
#define OPSS3 0x0008 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 3 */
|
||||||
|
#define OPSS4 0x0010 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 4 */
|
||||||
|
#define OPSS5 0x0020 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 5 */
|
||||||
|
#define OPSS6 0x0040 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 6 */
|
||||||
|
#define OPSS7 0x0080 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 7 */
|
||||||
|
#define OPSS8 0x0100 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 8 */
|
||||||
|
#define OPSS9 0x0200 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 9 */
|
||||||
|
#define OPSS10 0x0400 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 10 */
|
||||||
|
#define OPSS11 0x0800 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 11 */
|
||||||
|
#define OPSS12 0x1000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 12 */
|
||||||
|
#define OPSS13 0x2000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 13 */
|
||||||
|
#define OPSS14 0x4000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 14 */
|
||||||
|
#define OPSS15 0x8000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_OPSS2 Masks */
|
||||||
|
#define OPSS16 0x0001 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 16 */
|
||||||
|
#define OPSS17 0x0002 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 17 */
|
||||||
|
#define OPSS18 0x0004 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 18 */
|
||||||
|
#define OPSS19 0x0008 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 19 */
|
||||||
|
#define OPSS20 0x0010 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 20 */
|
||||||
|
#define OPSS21 0x0020 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 21 */
|
||||||
|
#define OPSS22 0x0040 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 22 */
|
||||||
|
#define OPSS23 0x0080 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 23 */
|
||||||
|
#define OPSS24 0x0100 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 24 */
|
||||||
|
#define OPSS25 0x0200 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 25 */
|
||||||
|
#define OPSS26 0x0400 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 26 */
|
||||||
|
#define OPSS27 0x0800 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 27 */
|
||||||
|
#define OPSS28 0x1000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 28 */
|
||||||
|
#define OPSS29 0x2000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 29 */
|
||||||
|
#define OPSS30 0x4000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 30 */
|
||||||
|
#define OPSS31 0x8000 /* Enable RX Overwrite Protection or TX Single-Shot For Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_TRR1 Masks */
|
||||||
|
#define TRR0 0x0001 /* Deny But Don't Lock Access To Mailbox 0 */
|
||||||
|
#define TRR1 0x0002 /* Deny But Don't Lock Access To Mailbox 1 */
|
||||||
|
#define TRR2 0x0004 /* Deny But Don't Lock Access To Mailbox 2 */
|
||||||
|
#define TRR3 0x0008 /* Deny But Don't Lock Access To Mailbox 3 */
|
||||||
|
#define TRR4 0x0010 /* Deny But Don't Lock Access To Mailbox 4 */
|
||||||
|
#define TRR5 0x0020 /* Deny But Don't Lock Access To Mailbox 5 */
|
||||||
|
#define TRR6 0x0040 /* Deny But Don't Lock Access To Mailbox 6 */
|
||||||
|
#define TRR7 0x0080 /* Deny But Don't Lock Access To Mailbox 7 */
|
||||||
|
#define TRR8 0x0100 /* Deny But Don't Lock Access To Mailbox 8 */
|
||||||
|
#define TRR9 0x0200 /* Deny But Don't Lock Access To Mailbox 9 */
|
||||||
|
#define TRR10 0x0400 /* Deny But Don't Lock Access To Mailbox 10 */
|
||||||
|
#define TRR11 0x0800 /* Deny But Don't Lock Access To Mailbox 11 */
|
||||||
|
#define TRR12 0x1000 /* Deny But Don't Lock Access To Mailbox 12 */
|
||||||
|
#define TRR13 0x2000 /* Deny But Don't Lock Access To Mailbox 13 */
|
||||||
|
#define TRR14 0x4000 /* Deny But Don't Lock Access To Mailbox 14 */
|
||||||
|
#define TRR15 0x8000 /* Deny But Don't Lock Access To Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_TRR2 Masks */
|
||||||
|
#define TRR16 0x0001 /* Deny But Don't Lock Access To Mailbox 16 */
|
||||||
|
#define TRR17 0x0002 /* Deny But Don't Lock Access To Mailbox 17 */
|
||||||
|
#define TRR18 0x0004 /* Deny But Don't Lock Access To Mailbox 18 */
|
||||||
|
#define TRR19 0x0008 /* Deny But Don't Lock Access To Mailbox 19 */
|
||||||
|
#define TRR20 0x0010 /* Deny But Don't Lock Access To Mailbox 20 */
|
||||||
|
#define TRR21 0x0020 /* Deny But Don't Lock Access To Mailbox 21 */
|
||||||
|
#define TRR22 0x0040 /* Deny But Don't Lock Access To Mailbox 22 */
|
||||||
|
#define TRR23 0x0080 /* Deny But Don't Lock Access To Mailbox 23 */
|
||||||
|
#define TRR24 0x0100 /* Deny But Don't Lock Access To Mailbox 24 */
|
||||||
|
#define TRR25 0x0200 /* Deny But Don't Lock Access To Mailbox 25 */
|
||||||
|
#define TRR26 0x0400 /* Deny But Don't Lock Access To Mailbox 26 */
|
||||||
|
#define TRR27 0x0800 /* Deny But Don't Lock Access To Mailbox 27 */
|
||||||
|
#define TRR28 0x1000 /* Deny But Don't Lock Access To Mailbox 28 */
|
||||||
|
#define TRR29 0x2000 /* Deny But Don't Lock Access To Mailbox 29 */
|
||||||
|
#define TRR30 0x4000 /* Deny But Don't Lock Access To Mailbox 30 */
|
||||||
|
#define TRR31 0x8000 /* Deny But Don't Lock Access To Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_TRS1 Masks */
|
||||||
|
#define TRS0 0x0001 /* Remote Frame Request For Mailbox 0 */
|
||||||
|
#define TRS1 0x0002 /* Remote Frame Request For Mailbox 1 */
|
||||||
|
#define TRS2 0x0004 /* Remote Frame Request For Mailbox 2 */
|
||||||
|
#define TRS3 0x0008 /* Remote Frame Request For Mailbox 3 */
|
||||||
|
#define TRS4 0x0010 /* Remote Frame Request For Mailbox 4 */
|
||||||
|
#define TRS5 0x0020 /* Remote Frame Request For Mailbox 5 */
|
||||||
|
#define TRS6 0x0040 /* Remote Frame Request For Mailbox 6 */
|
||||||
|
#define TRS7 0x0080 /* Remote Frame Request For Mailbox 7 */
|
||||||
|
#define TRS8 0x0100 /* Remote Frame Request For Mailbox 8 */
|
||||||
|
#define TRS9 0x0200 /* Remote Frame Request For Mailbox 9 */
|
||||||
|
#define TRS10 0x0400 /* Remote Frame Request For Mailbox 10 */
|
||||||
|
#define TRS11 0x0800 /* Remote Frame Request For Mailbox 11 */
|
||||||
|
#define TRS12 0x1000 /* Remote Frame Request For Mailbox 12 */
|
||||||
|
#define TRS13 0x2000 /* Remote Frame Request For Mailbox 13 */
|
||||||
|
#define TRS14 0x4000 /* Remote Frame Request For Mailbox 14 */
|
||||||
|
#define TRS15 0x8000 /* Remote Frame Request For Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_TRS2 Masks */
|
||||||
|
#define TRS16 0x0001 /* Remote Frame Request For Mailbox 16 */
|
||||||
|
#define TRS17 0x0002 /* Remote Frame Request For Mailbox 17 */
|
||||||
|
#define TRS18 0x0004 /* Remote Frame Request For Mailbox 18 */
|
||||||
|
#define TRS19 0x0008 /* Remote Frame Request For Mailbox 19 */
|
||||||
|
#define TRS20 0x0010 /* Remote Frame Request For Mailbox 20 */
|
||||||
|
#define TRS21 0x0020 /* Remote Frame Request For Mailbox 21 */
|
||||||
|
#define TRS22 0x0040 /* Remote Frame Request For Mailbox 22 */
|
||||||
|
#define TRS23 0x0080 /* Remote Frame Request For Mailbox 23 */
|
||||||
|
#define TRS24 0x0100 /* Remote Frame Request For Mailbox 24 */
|
||||||
|
#define TRS25 0x0200 /* Remote Frame Request For Mailbox 25 */
|
||||||
|
#define TRS26 0x0400 /* Remote Frame Request For Mailbox 26 */
|
||||||
|
#define TRS27 0x0800 /* Remote Frame Request For Mailbox 27 */
|
||||||
|
#define TRS28 0x1000 /* Remote Frame Request For Mailbox 28 */
|
||||||
|
#define TRS29 0x2000 /* Remote Frame Request For Mailbox 29 */
|
||||||
|
#define TRS30 0x4000 /* Remote Frame Request For Mailbox 30 */
|
||||||
|
#define TRS31 0x8000 /* Remote Frame Request For Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_AA1 Masks */
|
||||||
|
#define AA0 0x0001 /* Aborted Message In Mailbox 0 */
|
||||||
|
#define AA1 0x0002 /* Aborted Message In Mailbox 1 */
|
||||||
|
#define AA2 0x0004 /* Aborted Message In Mailbox 2 */
|
||||||
|
#define AA3 0x0008 /* Aborted Message In Mailbox 3 */
|
||||||
|
#define AA4 0x0010 /* Aborted Message In Mailbox 4 */
|
||||||
|
#define AA5 0x0020 /* Aborted Message In Mailbox 5 */
|
||||||
|
#define AA6 0x0040 /* Aborted Message In Mailbox 6 */
|
||||||
|
#define AA7 0x0080 /* Aborted Message In Mailbox 7 */
|
||||||
|
#define AA8 0x0100 /* Aborted Message In Mailbox 8 */
|
||||||
|
#define AA9 0x0200 /* Aborted Message In Mailbox 9 */
|
||||||
|
#define AA10 0x0400 /* Aborted Message In Mailbox 10 */
|
||||||
|
#define AA11 0x0800 /* Aborted Message In Mailbox 11 */
|
||||||
|
#define AA12 0x1000 /* Aborted Message In Mailbox 12 */
|
||||||
|
#define AA13 0x2000 /* Aborted Message In Mailbox 13 */
|
||||||
|
#define AA14 0x4000 /* Aborted Message In Mailbox 14 */
|
||||||
|
#define AA15 0x8000 /* Aborted Message In Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_AA2 Masks */
|
||||||
|
#define AA16 0x0001 /* Aborted Message In Mailbox 16 */
|
||||||
|
#define AA17 0x0002 /* Aborted Message In Mailbox 17 */
|
||||||
|
#define AA18 0x0004 /* Aborted Message In Mailbox 18 */
|
||||||
|
#define AA19 0x0008 /* Aborted Message In Mailbox 19 */
|
||||||
|
#define AA20 0x0010 /* Aborted Message In Mailbox 20 */
|
||||||
|
#define AA21 0x0020 /* Aborted Message In Mailbox 21 */
|
||||||
|
#define AA22 0x0040 /* Aborted Message In Mailbox 22 */
|
||||||
|
#define AA23 0x0080 /* Aborted Message In Mailbox 23 */
|
||||||
|
#define AA24 0x0100 /* Aborted Message In Mailbox 24 */
|
||||||
|
#define AA25 0x0200 /* Aborted Message In Mailbox 25 */
|
||||||
|
#define AA26 0x0400 /* Aborted Message In Mailbox 26 */
|
||||||
|
#define AA27 0x0800 /* Aborted Message In Mailbox 27 */
|
||||||
|
#define AA28 0x1000 /* Aborted Message In Mailbox 28 */
|
||||||
|
#define AA29 0x2000 /* Aborted Message In Mailbox 29 */
|
||||||
|
#define AA30 0x4000 /* Aborted Message In Mailbox 30 */
|
||||||
|
#define AA31 0x8000 /* Aborted Message In Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_TA1 Masks */
|
||||||
|
#define TA0 0x0001 /* Transmit Successful From Mailbox 0 */
|
||||||
|
#define TA1 0x0002 /* Transmit Successful From Mailbox 1 */
|
||||||
|
#define TA2 0x0004 /* Transmit Successful From Mailbox 2 */
|
||||||
|
#define TA3 0x0008 /* Transmit Successful From Mailbox 3 */
|
||||||
|
#define TA4 0x0010 /* Transmit Successful From Mailbox 4 */
|
||||||
|
#define TA5 0x0020 /* Transmit Successful From Mailbox 5 */
|
||||||
|
#define TA6 0x0040 /* Transmit Successful From Mailbox 6 */
|
||||||
|
#define TA7 0x0080 /* Transmit Successful From Mailbox 7 */
|
||||||
|
#define TA8 0x0100 /* Transmit Successful From Mailbox 8 */
|
||||||
|
#define TA9 0x0200 /* Transmit Successful From Mailbox 9 */
|
||||||
|
#define TA10 0x0400 /* Transmit Successful From Mailbox 10 */
|
||||||
|
#define TA11 0x0800 /* Transmit Successful From Mailbox 11 */
|
||||||
|
#define TA12 0x1000 /* Transmit Successful From Mailbox 12 */
|
||||||
|
#define TA13 0x2000 /* Transmit Successful From Mailbox 13 */
|
||||||
|
#define TA14 0x4000 /* Transmit Successful From Mailbox 14 */
|
||||||
|
#define TA15 0x8000 /* Transmit Successful From Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_TA2 Masks */
|
||||||
|
#define TA16 0x0001 /* Transmit Successful From Mailbox 16 */
|
||||||
|
#define TA17 0x0002 /* Transmit Successful From Mailbox 17 */
|
||||||
|
#define TA18 0x0004 /* Transmit Successful From Mailbox 18 */
|
||||||
|
#define TA19 0x0008 /* Transmit Successful From Mailbox 19 */
|
||||||
|
#define TA20 0x0010 /* Transmit Successful From Mailbox 20 */
|
||||||
|
#define TA21 0x0020 /* Transmit Successful From Mailbox 21 */
|
||||||
|
#define TA22 0x0040 /* Transmit Successful From Mailbox 22 */
|
||||||
|
#define TA23 0x0080 /* Transmit Successful From Mailbox 23 */
|
||||||
|
#define TA24 0x0100 /* Transmit Successful From Mailbox 24 */
|
||||||
|
#define TA25 0x0200 /* Transmit Successful From Mailbox 25 */
|
||||||
|
#define TA26 0x0400 /* Transmit Successful From Mailbox 26 */
|
||||||
|
#define TA27 0x0800 /* Transmit Successful From Mailbox 27 */
|
||||||
|
#define TA28 0x1000 /* Transmit Successful From Mailbox 28 */
|
||||||
|
#define TA29 0x2000 /* Transmit Successful From Mailbox 29 */
|
||||||
|
#define TA30 0x4000 /* Transmit Successful From Mailbox 30 */
|
||||||
|
#define TA31 0x8000 /* Transmit Successful From Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_MBTD Masks */
|
||||||
|
#define TDPTR 0x001F /* Mailbox To Temporarily Disable */
|
||||||
|
#define TDA 0x0040 /* Temporary Disable Acknowledge */
|
||||||
|
#define TDR 0x0080 /* Temporary Disable Request */
|
||||||
|
|
||||||
|
/* CAN_RFH1 Masks */
|
||||||
|
#define RFH0 0x0001 /* Enable Automatic Remote Frame Handling For Mailbox 0 */
|
||||||
|
#define RFH1 0x0002 /* Enable Automatic Remote Frame Handling For Mailbox 1 */
|
||||||
|
#define RFH2 0x0004 /* Enable Automatic Remote Frame Handling For Mailbox 2 */
|
||||||
|
#define RFH3 0x0008 /* Enable Automatic Remote Frame Handling For Mailbox 3 */
|
||||||
|
#define RFH4 0x0010 /* Enable Automatic Remote Frame Handling For Mailbox 4 */
|
||||||
|
#define RFH5 0x0020 /* Enable Automatic Remote Frame Handling For Mailbox 5 */
|
||||||
|
#define RFH6 0x0040 /* Enable Automatic Remote Frame Handling For Mailbox 6 */
|
||||||
|
#define RFH7 0x0080 /* Enable Automatic Remote Frame Handling For Mailbox 7 */
|
||||||
|
#define RFH8 0x0100 /* Enable Automatic Remote Frame Handling For Mailbox 8 */
|
||||||
|
#define RFH9 0x0200 /* Enable Automatic Remote Frame Handling For Mailbox 9 */
|
||||||
|
#define RFH10 0x0400 /* Enable Automatic Remote Frame Handling For Mailbox 10 */
|
||||||
|
#define RFH11 0x0800 /* Enable Automatic Remote Frame Handling For Mailbox 11 */
|
||||||
|
#define RFH12 0x1000 /* Enable Automatic Remote Frame Handling For Mailbox 12 */
|
||||||
|
#define RFH13 0x2000 /* Enable Automatic Remote Frame Handling For Mailbox 13 */
|
||||||
|
#define RFH14 0x4000 /* Enable Automatic Remote Frame Handling For Mailbox 14 */
|
||||||
|
#define RFH15 0x8000 /* Enable Automatic Remote Frame Handling For Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_RFH2 Masks */
|
||||||
|
#define RFH16 0x0001 /* Enable Automatic Remote Frame Handling For Mailbox 16 */
|
||||||
|
#define RFH17 0x0002 /* Enable Automatic Remote Frame Handling For Mailbox 17 */
|
||||||
|
#define RFH18 0x0004 /* Enable Automatic Remote Frame Handling For Mailbox 18 */
|
||||||
|
#define RFH19 0x0008 /* Enable Automatic Remote Frame Handling For Mailbox 19 */
|
||||||
|
#define RFH20 0x0010 /* Enable Automatic Remote Frame Handling For Mailbox 20 */
|
||||||
|
#define RFH21 0x0020 /* Enable Automatic Remote Frame Handling For Mailbox 21 */
|
||||||
|
#define RFH22 0x0040 /* Enable Automatic Remote Frame Handling For Mailbox 22 */
|
||||||
|
#define RFH23 0x0080 /* Enable Automatic Remote Frame Handling For Mailbox 23 */
|
||||||
|
#define RFH24 0x0100 /* Enable Automatic Remote Frame Handling For Mailbox 24 */
|
||||||
|
#define RFH25 0x0200 /* Enable Automatic Remote Frame Handling For Mailbox 25 */
|
||||||
|
#define RFH26 0x0400 /* Enable Automatic Remote Frame Handling For Mailbox 26 */
|
||||||
|
#define RFH27 0x0800 /* Enable Automatic Remote Frame Handling For Mailbox 27 */
|
||||||
|
#define RFH28 0x1000 /* Enable Automatic Remote Frame Handling For Mailbox 28 */
|
||||||
|
#define RFH29 0x2000 /* Enable Automatic Remote Frame Handling For Mailbox 29 */
|
||||||
|
#define RFH30 0x4000 /* Enable Automatic Remote Frame Handling For Mailbox 30 */
|
||||||
|
#define RFH31 0x8000 /* Enable Automatic Remote Frame Handling For Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_MBTIF1 Masks */
|
||||||
|
#define MBTIF0 0x0001 /* TX Interrupt Active In Mailbox 0 */
|
||||||
|
#define MBTIF1 0x0002 /* TX Interrupt Active In Mailbox 1 */
|
||||||
|
#define MBTIF2 0x0004 /* TX Interrupt Active In Mailbox 2 */
|
||||||
|
#define MBTIF3 0x0008 /* TX Interrupt Active In Mailbox 3 */
|
||||||
|
#define MBTIF4 0x0010 /* TX Interrupt Active In Mailbox 4 */
|
||||||
|
#define MBTIF5 0x0020 /* TX Interrupt Active In Mailbox 5 */
|
||||||
|
#define MBTIF6 0x0040 /* TX Interrupt Active In Mailbox 6 */
|
||||||
|
#define MBTIF7 0x0080 /* TX Interrupt Active In Mailbox 7 */
|
||||||
|
#define MBTIF8 0x0100 /* TX Interrupt Active In Mailbox 8 */
|
||||||
|
#define MBTIF9 0x0200 /* TX Interrupt Active In Mailbox 9 */
|
||||||
|
#define MBTIF10 0x0400 /* TX Interrupt Active In Mailbox 10 */
|
||||||
|
#define MBTIF11 0x0800 /* TX Interrupt Active In Mailbox 11 */
|
||||||
|
#define MBTIF12 0x1000 /* TX Interrupt Active In Mailbox 12 */
|
||||||
|
#define MBTIF13 0x2000 /* TX Interrupt Active In Mailbox 13 */
|
||||||
|
#define MBTIF14 0x4000 /* TX Interrupt Active In Mailbox 14 */
|
||||||
|
#define MBTIF15 0x8000 /* TX Interrupt Active In Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_MBTIF2 Masks */
|
||||||
|
#define MBTIF16 0x0001 /* TX Interrupt Active In Mailbox 16 */
|
||||||
|
#define MBTIF17 0x0002 /* TX Interrupt Active In Mailbox 17 */
|
||||||
|
#define MBTIF18 0x0004 /* TX Interrupt Active In Mailbox 18 */
|
||||||
|
#define MBTIF19 0x0008 /* TX Interrupt Active In Mailbox 19 */
|
||||||
|
#define MBTIF20 0x0010 /* TX Interrupt Active In Mailbox 20 */
|
||||||
|
#define MBTIF21 0x0020 /* TX Interrupt Active In Mailbox 21 */
|
||||||
|
#define MBTIF22 0x0040 /* TX Interrupt Active In Mailbox 22 */
|
||||||
|
#define MBTIF23 0x0080 /* TX Interrupt Active In Mailbox 23 */
|
||||||
|
#define MBTIF24 0x0100 /* TX Interrupt Active In Mailbox 24 */
|
||||||
|
#define MBTIF25 0x0200 /* TX Interrupt Active In Mailbox 25 */
|
||||||
|
#define MBTIF26 0x0400 /* TX Interrupt Active In Mailbox 26 */
|
||||||
|
#define MBTIF27 0x0800 /* TX Interrupt Active In Mailbox 27 */
|
||||||
|
#define MBTIF28 0x1000 /* TX Interrupt Active In Mailbox 28 */
|
||||||
|
#define MBTIF29 0x2000 /* TX Interrupt Active In Mailbox 29 */
|
||||||
|
#define MBTIF30 0x4000 /* TX Interrupt Active In Mailbox 30 */
|
||||||
|
#define MBTIF31 0x8000 /* TX Interrupt Active In Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_MBRIF1 Masks */
|
||||||
|
#define MBRIF0 0x0001 /* RX Interrupt Active In Mailbox 0 */
|
||||||
|
#define MBRIF1 0x0002 /* RX Interrupt Active In Mailbox 1 */
|
||||||
|
#define MBRIF2 0x0004 /* RX Interrupt Active In Mailbox 2 */
|
||||||
|
#define MBRIF3 0x0008 /* RX Interrupt Active In Mailbox 3 */
|
||||||
|
#define MBRIF4 0x0010 /* RX Interrupt Active In Mailbox 4 */
|
||||||
|
#define MBRIF5 0x0020 /* RX Interrupt Active In Mailbox 5 */
|
||||||
|
#define MBRIF6 0x0040 /* RX Interrupt Active In Mailbox 6 */
|
||||||
|
#define MBRIF7 0x0080 /* RX Interrupt Active In Mailbox 7 */
|
||||||
|
#define MBRIF8 0x0100 /* RX Interrupt Active In Mailbox 8 */
|
||||||
|
#define MBRIF9 0x0200 /* RX Interrupt Active In Mailbox 9 */
|
||||||
|
#define MBRIF10 0x0400 /* RX Interrupt Active In Mailbox 10 */
|
||||||
|
#define MBRIF11 0x0800 /* RX Interrupt Active In Mailbox 11 */
|
||||||
|
#define MBRIF12 0x1000 /* RX Interrupt Active In Mailbox 12 */
|
||||||
|
#define MBRIF13 0x2000 /* RX Interrupt Active In Mailbox 13 */
|
||||||
|
#define MBRIF14 0x4000 /* RX Interrupt Active In Mailbox 14 */
|
||||||
|
#define MBRIF15 0x8000 /* RX Interrupt Active In Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_MBRIF2 Masks */
|
||||||
|
#define MBRIF16 0x0001 /* RX Interrupt Active In Mailbox 16 */
|
||||||
|
#define MBRIF17 0x0002 /* RX Interrupt Active In Mailbox 17 */
|
||||||
|
#define MBRIF18 0x0004 /* RX Interrupt Active In Mailbox 18 */
|
||||||
|
#define MBRIF19 0x0008 /* RX Interrupt Active In Mailbox 19 */
|
||||||
|
#define MBRIF20 0x0010 /* RX Interrupt Active In Mailbox 20 */
|
||||||
|
#define MBRIF21 0x0020 /* RX Interrupt Active In Mailbox 21 */
|
||||||
|
#define MBRIF22 0x0040 /* RX Interrupt Active In Mailbox 22 */
|
||||||
|
#define MBRIF23 0x0080 /* RX Interrupt Active In Mailbox 23 */
|
||||||
|
#define MBRIF24 0x0100 /* RX Interrupt Active In Mailbox 24 */
|
||||||
|
#define MBRIF25 0x0200 /* RX Interrupt Active In Mailbox 25 */
|
||||||
|
#define MBRIF26 0x0400 /* RX Interrupt Active In Mailbox 26 */
|
||||||
|
#define MBRIF27 0x0800 /* RX Interrupt Active In Mailbox 27 */
|
||||||
|
#define MBRIF28 0x1000 /* RX Interrupt Active In Mailbox 28 */
|
||||||
|
#define MBRIF29 0x2000 /* RX Interrupt Active In Mailbox 29 */
|
||||||
|
#define MBRIF30 0x4000 /* RX Interrupt Active In Mailbox 30 */
|
||||||
|
#define MBRIF31 0x8000 /* RX Interrupt Active In Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_MBIM1 Masks */
|
||||||
|
#define MBIM0 0x0001 /* Enable Interrupt For Mailbox 0 */
|
||||||
|
#define MBIM1 0x0002 /* Enable Interrupt For Mailbox 1 */
|
||||||
|
#define MBIM2 0x0004 /* Enable Interrupt For Mailbox 2 */
|
||||||
|
#define MBIM3 0x0008 /* Enable Interrupt For Mailbox 3 */
|
||||||
|
#define MBIM4 0x0010 /* Enable Interrupt For Mailbox 4 */
|
||||||
|
#define MBIM5 0x0020 /* Enable Interrupt For Mailbox 5 */
|
||||||
|
#define MBIM6 0x0040 /* Enable Interrupt For Mailbox 6 */
|
||||||
|
#define MBIM7 0x0080 /* Enable Interrupt For Mailbox 7 */
|
||||||
|
#define MBIM8 0x0100 /* Enable Interrupt For Mailbox 8 */
|
||||||
|
#define MBIM9 0x0200 /* Enable Interrupt For Mailbox 9 */
|
||||||
|
#define MBIM10 0x0400 /* Enable Interrupt For Mailbox 10 */
|
||||||
|
#define MBIM11 0x0800 /* Enable Interrupt For Mailbox 11 */
|
||||||
|
#define MBIM12 0x1000 /* Enable Interrupt For Mailbox 12 */
|
||||||
|
#define MBIM13 0x2000 /* Enable Interrupt For Mailbox 13 */
|
||||||
|
#define MBIM14 0x4000 /* Enable Interrupt For Mailbox 14 */
|
||||||
|
#define MBIM15 0x8000 /* Enable Interrupt For Mailbox 15 */
|
||||||
|
|
||||||
|
/* CAN_MBIM2 Masks */
|
||||||
|
#define MBIM16 0x0001 /* Enable Interrupt For Mailbox 16 */
|
||||||
|
#define MBIM17 0x0002 /* Enable Interrupt For Mailbox 17 */
|
||||||
|
#define MBIM18 0x0004 /* Enable Interrupt For Mailbox 18 */
|
||||||
|
#define MBIM19 0x0008 /* Enable Interrupt For Mailbox 19 */
|
||||||
|
#define MBIM20 0x0010 /* Enable Interrupt For Mailbox 20 */
|
||||||
|
#define MBIM21 0x0020 /* Enable Interrupt For Mailbox 21 */
|
||||||
|
#define MBIM22 0x0040 /* Enable Interrupt For Mailbox 22 */
|
||||||
|
#define MBIM23 0x0080 /* Enable Interrupt For Mailbox 23 */
|
||||||
|
#define MBIM24 0x0100 /* Enable Interrupt For Mailbox 24 */
|
||||||
|
#define MBIM25 0x0200 /* Enable Interrupt For Mailbox 25 */
|
||||||
|
#define MBIM26 0x0400 /* Enable Interrupt For Mailbox 26 */
|
||||||
|
#define MBIM27 0x0800 /* Enable Interrupt For Mailbox 27 */
|
||||||
|
#define MBIM28 0x1000 /* Enable Interrupt For Mailbox 28 */
|
||||||
|
#define MBIM29 0x2000 /* Enable Interrupt For Mailbox 29 */
|
||||||
|
#define MBIM30 0x4000 /* Enable Interrupt For Mailbox 30 */
|
||||||
|
#define MBIM31 0x8000 /* Enable Interrupt For Mailbox 31 */
|
||||||
|
|
||||||
|
/* CAN_GIM Masks */
|
||||||
|
#define EWTIM 0x0001 /* Enable TX Error Count Interrupt */
|
||||||
|
#define EWRIM 0x0002 /* Enable RX Error Count Interrupt */
|
||||||
|
#define EPIM 0x0004 /* Enable Error-Passive Mode Interrupt */
|
||||||
|
#define BOIM 0x0008 /* Enable Bus Off Interrupt */
|
||||||
|
#define WUIM 0x0010 /* Enable Wake-Up Interrupt */
|
||||||
|
#define UIAIM 0x0020 /* Enable Access To Unimplemented Address Interrupt */
|
||||||
|
#define AAIM 0x0040 /* Enable Abort Acknowledge Interrupt */
|
||||||
|
#define RMLIM 0x0080 /* Enable RX Message Lost Interrupt */
|
||||||
|
#define UCEIM 0x0100 /* Enable Universal Counter Overflow Interrupt */
|
||||||
|
#define EXTIM 0x0200 /* Enable External Trigger Output Interrupt */
|
||||||
|
#define ADIM 0x0400 /* Enable Access Denied Interrupt */
|
||||||
|
|
||||||
|
/* CAN_GIS Masks */
|
||||||
|
#define EWTIS 0x0001 /* TX Error Count IRQ Status */
|
||||||
|
#define EWRIS 0x0002 /* RX Error Count IRQ Status */
|
||||||
|
#define EPIS 0x0004 /* Error-Passive Mode IRQ Status */
|
||||||
|
#define BOIS 0x0008 /* Bus Off IRQ Status */
|
||||||
|
#define WUIS 0x0010 /* Wake-Up IRQ Status */
|
||||||
|
#define UIAIS 0x0020 /* Access To Unimplemented Address IRQ Status */
|
||||||
|
#define AAIS 0x0040 /* Abort Acknowledge IRQ Status */
|
||||||
|
#define RMLIS 0x0080 /* RX Message Lost IRQ Status */
|
||||||
|
#define UCEIS 0x0100 /* Universal Counter Overflow IRQ Status */
|
||||||
|
#define EXTIS 0x0200 /* External Trigger Output IRQ Status */
|
||||||
|
#define ADIS 0x0400 /* Access Denied IRQ Status */
|
||||||
|
|
||||||
|
/* CAN_GIF Masks */
|
||||||
|
#define EWTIF 0x0001 /* TX Error Count IRQ Flag */
|
||||||
|
#define EWRIF 0x0002 /* RX Error Count IRQ Flag */
|
||||||
|
#define EPIF 0x0004 /* Error-Passive Mode IRQ Flag */
|
||||||
|
#define BOIF 0x0008 /* Bus Off IRQ Flag */
|
||||||
|
#define WUIF 0x0010 /* Wake-Up IRQ Flag */
|
||||||
|
#define UIAIF 0x0020 /* Access To Unimplemented Address IRQ Flag */
|
||||||
|
#define AAIF 0x0040 /* Abort Acknowledge IRQ Flag */
|
||||||
|
#define RMLIF 0x0080 /* RX Message Lost IRQ Flag */
|
||||||
|
#define UCEIF 0x0100 /* Universal Counter Overflow IRQ Flag */
|
||||||
|
#define EXTIF 0x0200 /* External Trigger Output IRQ Flag */
|
||||||
|
#define ADIF 0x0400 /* Access Denied IRQ Flag */
|
||||||
|
|
||||||
|
/* CAN_UCCNF Masks */
|
||||||
|
#define UCCNF 0x000F /* Universal Counter Mode */
|
||||||
|
#define UC_STAMP 0x0001 /* Timestamp Mode */
|
||||||
|
#define UC_WDOG 0x0002 /* Watchdog Mode */
|
||||||
|
#define UC_AUTOTX 0x0003 /* Auto-Transmit Mode */
|
||||||
|
#define UC_ERROR 0x0006 /* CAN Error Frame Count */
|
||||||
|
#define UC_OVER 0x0007 /* CAN Overload Frame Count */
|
||||||
|
#define UC_LOST 0x0008 /* Arbitration Lost During TX Count */
|
||||||
|
#define UC_AA 0x0009 /* TX Abort Count */
|
||||||
|
#define UC_TA 0x000A /* TX Successful Count */
|
||||||
|
#define UC_REJECT 0x000B /* RX Message Rejected Count */
|
||||||
|
#define UC_RML 0x000C /* RX Message Lost Count */
|
||||||
|
#define UC_RX 0x000D /* Total Successful RX Messages Count */
|
||||||
|
#define UC_RMP 0x000E /* Successful RX W/Matching ID Count */
|
||||||
|
#define UC_ALL 0x000F /* Correct Message On CAN Bus Line Count */
|
||||||
|
#define UCRC 0x0020 /* Universal Counter Reload/Clear */
|
||||||
|
#define UCCT 0x0040 /* Universal Counter CAN Trigger */
|
||||||
|
#define UCE 0x0080 /* Universal Counter Enable */
|
||||||
|
|
||||||
|
/* CAN_ESR Masks */
|
||||||
|
#define ACKE 0x0004 /* Acknowledge Error */
|
||||||
|
#define SER 0x0008 /* Stuff Error */
|
||||||
|
#define CRCE 0x0010 /* CRC Error */
|
||||||
|
#define SA0 0x0020 /* Stuck At Dominant Error */
|
||||||
|
#define BEF 0x0040 /* Bit Error Flag */
|
||||||
|
#define FER 0x0080 /* Form Error Flag */
|
||||||
|
|
||||||
|
/* CAN_EWR Masks */
|
||||||
|
#define EWLREC 0x00FF /* RX Error Count Limit (For EWRIS) */
|
||||||
|
#define EWLTEC 0xFF00 /* TX Error Count Limit (For EWTIS) */
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* bfin_sport.h - userspace header for bfin sport driver
|
* bfin_sport.h - interface to Blackfin SPORTs
|
||||||
*
|
*
|
||||||
* Copyright 2004-2008 Analog Devices Inc.
|
* Copyright 2004-2009 Analog Devices Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the GPL-2 or later.
|
* Licensed under the GPL-2 or later.
|
||||||
*/
|
*/
|
||||||
|
@ -9,16 +9,6 @@
|
||||||
#ifndef __BFIN_SPORT_H__
|
#ifndef __BFIN_SPORT_H__
|
||||||
#define __BFIN_SPORT_H__
|
#define __BFIN_SPORT_H__
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
|
||||||
#include <linux/cdev.h>
|
|
||||||
#include <linux/mutex.h>
|
|
||||||
#include <linux/sched.h>
|
|
||||||
#include <linux/wait.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SPORT_MAJOR 237
|
|
||||||
#define SPORT_NR_DEVS 2
|
|
||||||
|
|
||||||
/* Sport mode: it can be set to TDM, i2s or others */
|
/* Sport mode: it can be set to TDM, i2s or others */
|
||||||
#define NORM_MODE 0x0
|
#define NORM_MODE 0x0
|
||||||
#define TDM_MODE 0x1
|
#define TDM_MODE 0x1
|
||||||
|
@ -35,7 +25,7 @@ struct sport_config {
|
||||||
unsigned int mode:3;
|
unsigned int mode:3;
|
||||||
|
|
||||||
/* if TDM mode is selected, channels must be set */
|
/* if TDM mode is selected, channels must be set */
|
||||||
int channels; /* Must be in 8 units */
|
int channels; /* Must be in 8 units */
|
||||||
unsigned int frame_delay:4; /* Delay between frame sync pulse and first bit */
|
unsigned int frame_delay:4; /* Delay between frame sync pulse and first bit */
|
||||||
|
|
||||||
/* I2S mode */
|
/* I2S mode */
|
||||||
|
@ -69,94 +59,137 @@ struct sport_config {
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
|
|
||||||
|
#include <linux/types.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* All Blackfin system MMRs are padded to 32bits even if the register
|
||||||
|
* itself is only 16bits. So use a helper macro to streamline this.
|
||||||
|
*/
|
||||||
|
#define __BFP(m) u16 m; u16 __pad_##m
|
||||||
struct sport_register {
|
struct sport_register {
|
||||||
unsigned short tcr1;
|
__BFP(tcr1);
|
||||||
unsigned short reserved0;
|
__BFP(tcr2);
|
||||||
unsigned short tcr2;
|
__BFP(tclkdiv);
|
||||||
unsigned short reserved1;
|
__BFP(tfsdiv);
|
||||||
unsigned short tclkdiv;
|
union {
|
||||||
unsigned short reserved2;
|
u32 tx32;
|
||||||
unsigned short tfsdiv;
|
u16 tx16;
|
||||||
unsigned short reserved3;
|
};
|
||||||
unsigned long tx;
|
u32 __pad_tx;
|
||||||
unsigned long reserved_l0;
|
union {
|
||||||
unsigned long rx;
|
u32 rx32; /* use the anomaly wrapper below */
|
||||||
unsigned long reserved_l1;
|
u16 rx16;
|
||||||
unsigned short rcr1;
|
};
|
||||||
unsigned short reserved4;
|
u32 __pad_rx;
|
||||||
unsigned short rcr2;
|
__BFP(rcr1);
|
||||||
unsigned short reserved5;
|
__BFP(rcr2);
|
||||||
unsigned short rclkdiv;
|
__BFP(rclkdiv);
|
||||||
unsigned short reserved6;
|
__BFP(rfsdiv);
|
||||||
unsigned short rfsdiv;
|
__BFP(stat);
|
||||||
unsigned short reserved7;
|
__BFP(chnl);
|
||||||
unsigned short stat;
|
__BFP(mcmc1);
|
||||||
unsigned short reserved8;
|
__BFP(mcmc2);
|
||||||
unsigned short chnl;
|
u32 mtcs0;
|
||||||
unsigned short reserved9;
|
u32 mtcs1;
|
||||||
unsigned short mcmc1;
|
u32 mtcs2;
|
||||||
unsigned short reserved10;
|
u32 mtcs3;
|
||||||
unsigned short mcmc2;
|
u32 mrcs0;
|
||||||
unsigned short reserved11;
|
u32 mrcs1;
|
||||||
unsigned long mtcs0;
|
u32 mrcs2;
|
||||||
unsigned long mtcs1;
|
u32 mrcs3;
|
||||||
unsigned long mtcs2;
|
|
||||||
unsigned long mtcs3;
|
|
||||||
unsigned long mrcs0;
|
|
||||||
unsigned long mrcs1;
|
|
||||||
unsigned long mrcs2;
|
|
||||||
unsigned long mrcs3;
|
|
||||||
};
|
};
|
||||||
|
#undef __BFP
|
||||||
|
|
||||||
struct sport_dev {
|
#define bfin_read_sport_rx32(base) \
|
||||||
struct cdev cdev; /* Char device structure */
|
({ \
|
||||||
|
struct sport_register *__mmrs = (void *)base; \
|
||||||
int sport_num;
|
u32 __ret; \
|
||||||
|
unsigned long flags; \
|
||||||
int dma_rx_chan;
|
if (ANOMALY_05000473) \
|
||||||
int dma_tx_chan;
|
local_irq_save(flags); \
|
||||||
|
__ret = __mmrs->rx32; \
|
||||||
int rx_irq;
|
if (ANOMALY_05000473) \
|
||||||
unsigned char *rx_buf; /* Buffer store the received data */
|
local_irq_restore(flags); \
|
||||||
int rx_len; /* How many bytes will be received */
|
__ret; \
|
||||||
int rx_received; /* How many bytes has been received */
|
})
|
||||||
|
|
||||||
int tx_irq;
|
|
||||||
const unsigned char *tx_buf;
|
|
||||||
int tx_len;
|
|
||||||
int tx_sent;
|
|
||||||
|
|
||||||
int err_irq;
|
|
||||||
|
|
||||||
struct mutex mutex; /* mutual exclusion semaphore */
|
|
||||||
struct task_struct *task;
|
|
||||||
|
|
||||||
wait_queue_head_t waitq;
|
|
||||||
int wait_con;
|
|
||||||
struct sport_register *regs;
|
|
||||||
struct sport_config config;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define SPORT_TCR1 0
|
/* Workaround defBF*.h SPORT MMRs till they get cleansed */
|
||||||
#define SPORT_TCR2 1
|
#undef DTYPE_NORM
|
||||||
#define SPORT_TCLKDIV 2
|
#undef SLEN
|
||||||
#define SPORT_TFSDIV 3
|
#undef SP_WOFF
|
||||||
#define SPORT_RCR1 8
|
#undef SP_WSIZE
|
||||||
#define SPORT_RCR2 9
|
|
||||||
#define SPORT_RCLKDIV 10
|
/* SPORT_TCR1 Masks */
|
||||||
#define SPORT_RFSDIV 11
|
#define TSPEN 0x0001 /* TX enable */
|
||||||
#define SPORT_CHANNEL 13
|
#define ITCLK 0x0002 /* Internal TX Clock Select */
|
||||||
#define SPORT_MCMC1 14
|
#define TDTYPE 0x000C /* TX Data Formatting Select */
|
||||||
#define SPORT_MCMC2 15
|
#define DTYPE_NORM 0x0000 /* Data Format Normal */
|
||||||
#define SPORT_MTCS0 16
|
#define DTYPE_ULAW 0x0008 /* Compand Using u-Law */
|
||||||
#define SPORT_MTCS1 17
|
#define DTYPE_ALAW 0x000C /* Compand Using A-Law */
|
||||||
#define SPORT_MTCS2 18
|
#define TLSBIT 0x0010 /* TX Bit Order */
|
||||||
#define SPORT_MTCS3 19
|
#define ITFS 0x0200 /* Internal TX Frame Sync Select */
|
||||||
#define SPORT_MRCS0 20
|
#define TFSR 0x0400 /* TX Frame Sync Required Select */
|
||||||
#define SPORT_MRCS1 21
|
#define DITFS 0x0800 /* Data Independent TX Frame Sync Select */
|
||||||
#define SPORT_MRCS2 22
|
#define LTFS 0x1000 /* Low TX Frame Sync Select */
|
||||||
#define SPORT_MRCS3 23
|
#define LATFS 0x2000 /* Late TX Frame Sync Select */
|
||||||
|
#define TCKFE 0x4000 /* TX Clock Falling Edge Select */
|
||||||
|
|
||||||
|
/* SPORT_TCR2 Masks */
|
||||||
|
#define SLEN 0x001F /* SPORT TX Word Length (2 - 31) */
|
||||||
|
#define DP_SLEN(x) BFIN_DEPOSIT(SLEN, x)
|
||||||
|
#define EX_SLEN(x) BFIN_EXTRACT(SLEN, x)
|
||||||
|
#define TXSE 0x0100 /* TX Secondary Enable */
|
||||||
|
#define TSFSE 0x0200 /* TX Stereo Frame Sync Enable */
|
||||||
|
#define TRFST 0x0400 /* TX Right-First Data Order */
|
||||||
|
|
||||||
|
/* SPORT_RCR1 Masks */
|
||||||
|
#define RSPEN 0x0001 /* RX enable */
|
||||||
|
#define IRCLK 0x0002 /* Internal RX Clock Select */
|
||||||
|
#define RDTYPE 0x000C /* RX Data Formatting Select */
|
||||||
|
/* DTYPE_* defined above */
|
||||||
|
#define RLSBIT 0x0010 /* RX Bit Order */
|
||||||
|
#define IRFS 0x0200 /* Internal RX Frame Sync Select */
|
||||||
|
#define RFSR 0x0400 /* RX Frame Sync Required Select */
|
||||||
|
#define LRFS 0x1000 /* Low RX Frame Sync Select */
|
||||||
|
#define LARFS 0x2000 /* Late RX Frame Sync Select */
|
||||||
|
#define RCKFE 0x4000 /* RX Clock Falling Edge Select */
|
||||||
|
|
||||||
|
/* SPORT_RCR2 Masks */
|
||||||
|
/* SLEN defined above */
|
||||||
|
#define RXSE 0x0100 /* RX Secondary Enable */
|
||||||
|
#define RSFSE 0x0200 /* RX Stereo Frame Sync Enable */
|
||||||
|
#define RRFST 0x0400 /* Right-First Data Order */
|
||||||
|
|
||||||
|
/* SPORT_STAT Masks */
|
||||||
|
#define RXNE 0x0001 /* RX FIFO Not Empty Status */
|
||||||
|
#define RUVF 0x0002 /* RX Underflow Status */
|
||||||
|
#define ROVF 0x0004 /* RX Overflow Status */
|
||||||
|
#define TXF 0x0008 /* TX FIFO Full Status */
|
||||||
|
#define TUVF 0x0010 /* TX Underflow Status */
|
||||||
|
#define TOVF 0x0020 /* TX Overflow Status */
|
||||||
|
#define TXHRE 0x0040 /* TX Hold Register Empty */
|
||||||
|
|
||||||
|
/* SPORT_MCMC1 Masks */
|
||||||
|
#define SP_WOFF 0x03FF /* Multichannel Window Offset Field */
|
||||||
|
#define DP_SP_WOFF(x) BFIN_DEPOSIT(SP_WOFF, x)
|
||||||
|
#define EX_SP_WOFF(x) BFIN_EXTRACT(SP_WOFF, x)
|
||||||
|
#define SP_WSIZE 0xF000 /* Multichannel Window Size Field */
|
||||||
|
#define DP_SP_WSIZE(x) BFIN_DEPOSIT(SP_WSIZE, x)
|
||||||
|
#define EX_SP_WSIZE(x) BFIN_EXTRACT(SP_WSIZE, x)
|
||||||
|
|
||||||
|
/* SPORT_MCMC2 Masks */
|
||||||
|
#define MCCRM 0x0003 /* Multichannel Clock Recovery Mode */
|
||||||
|
#define REC_BYPASS 0x0000 /* Bypass Mode (No Clock Recovery) */
|
||||||
|
#define REC_2FROM4 0x0002 /* Recover 2 MHz Clock from 4 MHz Clock */
|
||||||
|
#define REC_8FROM16 0x0003 /* Recover 8 MHz Clock from 16 MHz Clock */
|
||||||
|
#define MCDTXPE 0x0004 /* Multichannel DMA Transmit Packing */
|
||||||
|
#define MCDRXPE 0x0008 /* Multichannel DMA Receive Packing */
|
||||||
|
#define MCMEN 0x0010 /* Multichannel Frame Mode Enable */
|
||||||
|
#define FSDR 0x0080 /* Multichannel Frame Sync to Data Relationship */
|
||||||
|
#define MFD 0xF000 /* Multichannel Frame Delay */
|
||||||
|
#define DP_MFD(x) BFIN_DEPOSIT(MFD, x)
|
||||||
|
#define EX_MFD(x) BFIN_EXTRACT(MFD, x)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
/*
|
||||||
|
* bfin_watchdog.h - Blackfin watchdog definitions
|
||||||
|
*
|
||||||
|
* Copyright 2006-2010 Analog Devices Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _BFIN_WATCHDOG_H
|
||||||
|
#define _BFIN_WATCHDOG_H
|
||||||
|
|
||||||
|
/* Bit in SWRST that indicates boot caused by watchdog */
|
||||||
|
#define SWRST_RESET_WDOG 0x4000
|
||||||
|
|
||||||
|
/* Bit in WDOG_CTL that indicates watchdog has expired (WDR0) */
|
||||||
|
#define WDOG_EXPIRED 0x8000
|
||||||
|
|
||||||
|
/* Masks for WDEV field in WDOG_CTL register */
|
||||||
|
#define ICTL_RESET 0x0
|
||||||
|
#define ICTL_NMI 0x2
|
||||||
|
#define ICTL_GPI 0x4
|
||||||
|
#define ICTL_NONE 0x6
|
||||||
|
#define ICTL_MASK 0x6
|
||||||
|
|
||||||
|
/* Masks for WDEN field in WDOG_CTL register */
|
||||||
|
#define WDEN_MASK 0x0FF0
|
||||||
|
#define WDEN_ENABLE 0x0000
|
||||||
|
#define WDEN_DISABLE 0x0AD0
|
||||||
|
|
||||||
|
#endif
|
|
@ -7,22 +7,41 @@
|
||||||
#ifndef _BLACKFIN_BITOPS_H
|
#ifndef _BLACKFIN_BITOPS_H
|
||||||
#define _BLACKFIN_BITOPS_H
|
#define _BLACKFIN_BITOPS_H
|
||||||
|
|
||||||
#ifndef CONFIG_SMP
|
#include <linux/compiler.h>
|
||||||
# include <asm-generic/bitops.h>
|
|
||||||
#else
|
#include <asm-generic/bitops/__ffs.h>
|
||||||
|
#include <asm-generic/bitops/ffz.h>
|
||||||
|
#include <asm-generic/bitops/fls.h>
|
||||||
|
#include <asm-generic/bitops/__fls.h>
|
||||||
|
#include <asm-generic/bitops/fls64.h>
|
||||||
|
#include <asm-generic/bitops/find.h>
|
||||||
|
|
||||||
#ifndef _LINUX_BITOPS_H
|
#ifndef _LINUX_BITOPS_H
|
||||||
#error only <linux/bitops.h> can be included directly
|
#error only <linux/bitops.h> can be included directly
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <linux/compiler.h>
|
|
||||||
#include <asm/byteorder.h> /* swab32 */
|
|
||||||
|
|
||||||
#include <asm-generic/bitops/ffs.h>
|
|
||||||
#include <asm-generic/bitops/__ffs.h>
|
|
||||||
#include <asm-generic/bitops/sched.h>
|
#include <asm-generic/bitops/sched.h>
|
||||||
#include <asm-generic/bitops/ffz.h>
|
#include <asm-generic/bitops/ffs.h>
|
||||||
|
#include <asm-generic/bitops/lock.h>
|
||||||
|
#include <asm-generic/bitops/ext2-non-atomic.h>
|
||||||
|
#include <asm-generic/bitops/ext2-atomic.h>
|
||||||
|
#include <asm-generic/bitops/minix.h>
|
||||||
|
|
||||||
|
#ifndef CONFIG_SMP
|
||||||
|
#include <linux/irqflags.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* clear_bit may not imply a memory barrier
|
||||||
|
*/
|
||||||
|
#ifndef smp_mb__before_clear_bit
|
||||||
|
#define smp_mb__before_clear_bit() smp_mb()
|
||||||
|
#define smp_mb__after_clear_bit() smp_mb()
|
||||||
|
#endif
|
||||||
|
#include <asm-generic/bitops/atomic.h>
|
||||||
|
#include <asm-generic/bitops/non-atomic.h>
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <asm/byteorder.h> /* swab32 */
|
||||||
#include <linux/linkage.h>
|
#include <linux/linkage.h>
|
||||||
|
|
||||||
asmlinkage int __raw_bit_set_asm(volatile unsigned long *addr, int nr);
|
asmlinkage int __raw_bit_set_asm(volatile unsigned long *addr, int nr);
|
||||||
|
@ -89,19 +108,36 @@ static inline int test_and_change_bit(int nr, volatile unsigned long *addr)
|
||||||
|
|
||||||
#include <asm-generic/bitops/non-atomic.h>
|
#include <asm-generic/bitops/non-atomic.h>
|
||||||
|
|
||||||
#include <asm-generic/bitops/find.h>
|
|
||||||
#include <asm-generic/bitops/hweight.h>
|
|
||||||
#include <asm-generic/bitops/lock.h>
|
|
||||||
|
|
||||||
#include <asm-generic/bitops/ext2-atomic.h>
|
|
||||||
#include <asm-generic/bitops/ext2-non-atomic.h>
|
|
||||||
|
|
||||||
#include <asm-generic/bitops/minix.h>
|
|
||||||
|
|
||||||
#include <asm-generic/bitops/fls.h>
|
|
||||||
#include <asm-generic/bitops/__fls.h>
|
|
||||||
#include <asm-generic/bitops/fls64.h>
|
|
||||||
|
|
||||||
#endif /* CONFIG_SMP */
|
#endif /* CONFIG_SMP */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* hweightN: returns the hamming weight (i.e. the number
|
||||||
|
* of bits set) of a N-bit word
|
||||||
|
*/
|
||||||
|
|
||||||
|
static inline unsigned int hweight32(unsigned int w)
|
||||||
|
{
|
||||||
|
unsigned int res;
|
||||||
|
|
||||||
|
__asm__ ("%0.l = ONES %0;"
|
||||||
|
"%0 = %0.l (Z);"
|
||||||
|
: "=d" (res) : "d" (w));
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int hweight64(__u64 w)
|
||||||
|
{
|
||||||
|
return hweight32((unsigned int)(w >> 32)) + hweight32((unsigned int)w);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int hweight16(unsigned int w)
|
||||||
|
{
|
||||||
|
return hweight32(w & 0xffff);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int hweight8(unsigned int w)
|
||||||
|
{
|
||||||
|
return hweight32(w & 0xff);
|
||||||
|
}
|
||||||
|
|
||||||
#endif /* _BLACKFIN_BITOPS_H */
|
#endif /* _BLACKFIN_BITOPS_H */
|
||||||
|
|
|
@ -72,6 +72,11 @@
|
||||||
sti r0;
|
sti r0;
|
||||||
#else
|
#else
|
||||||
cli r0;
|
cli r0;
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
||||||
|
sp += -12;
|
||||||
|
call _trace_hardirqs_off;
|
||||||
|
sp += 12;
|
||||||
#endif
|
#endif
|
||||||
[--sp] = RETI; /*orig_pc*/
|
[--sp] = RETI; /*orig_pc*/
|
||||||
/* Clear all L registers. */
|
/* Clear all L registers. */
|
||||||
|
@ -279,6 +284,13 @@
|
||||||
RETN = [sp++];
|
RETN = [sp++];
|
||||||
RETX = [sp++];
|
RETX = [sp++];
|
||||||
RETI = [sp++];
|
RETI = [sp++];
|
||||||
|
|
||||||
|
#ifdef CONFIG_TRACE_IRQFLAGS
|
||||||
|
sp += -12;
|
||||||
|
call _trace_hardirqs_on;
|
||||||
|
sp += 12;
|
||||||
|
#endif
|
||||||
|
|
||||||
RETS = [sp++];
|
RETS = [sp++];
|
||||||
|
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
|
@ -374,3 +386,13 @@
|
||||||
|
|
||||||
(R7:0, P5:0) = [SP++];
|
(R7:0, P5:0) = [SP++];
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
|
.macro pseudo_long_call func:req, scratch:req
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
\scratch\().l = \func;
|
||||||
|
\scratch\().h = \func;
|
||||||
|
call (\scratch);
|
||||||
|
#else
|
||||||
|
call \func;
|
||||||
|
#endif
|
||||||
|
.endm
|
||||||
|
|
|
@ -17,8 +17,6 @@ struct blackfin_cpudata {
|
||||||
struct task_struct *idle;
|
struct task_struct *idle;
|
||||||
unsigned int imemctl;
|
unsigned int imemctl;
|
||||||
unsigned int dmemctl;
|
unsigned int dmemctl;
|
||||||
unsigned long dcache_invld_count;
|
|
||||||
unsigned long icache_invld_count;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
DECLARE_PER_CPU(struct blackfin_cpudata, cpu_data);
|
DECLARE_PER_CPU(struct blackfin_cpudata, cpu_data);
|
||||||
|
|
|
@ -12,6 +12,8 @@
|
||||||
#include <mach/anomaly.h>
|
#include <mach/anomaly.h>
|
||||||
|
|
||||||
#define MK_BMSK_(x) (1<<x)
|
#define MK_BMSK_(x) (1<<x)
|
||||||
|
#define BFIN_DEPOSIT(mask, x) (((x) << __ffs(mask)) & (mask))
|
||||||
|
#define BFIN_EXTRACT(mask, x) (((x) & (mask)) >> __ffs(mask))
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
@ -23,62 +25,30 @@
|
||||||
# define NOP_PAD_ANOMALY_05000198
|
# define NOP_PAD_ANOMALY_05000198
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define bfin_read8(addr) ({ \
|
#define _bfin_readX(addr, size, asm_size, asm_ext) ({ \
|
||||||
uint32_t __v; \
|
u32 __v; \
|
||||||
__asm__ __volatile__( \
|
__asm__ __volatile__( \
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
NOP_PAD_ANOMALY_05000198 \
|
||||||
"%0 = b[%1] (z);" \
|
"%0 = " #asm_size "[%1]" #asm_ext ";" \
|
||||||
: "=d" (__v) \
|
: "=d" (__v) \
|
||||||
: "a" (addr) \
|
: "a" (addr) \
|
||||||
); \
|
); \
|
||||||
__v; })
|
__v; })
|
||||||
|
#define _bfin_writeX(addr, val, size, asm_size) \
|
||||||
#define bfin_read16(addr) ({ \
|
|
||||||
uint32_t __v; \
|
|
||||||
__asm__ __volatile__( \
|
__asm__ __volatile__( \
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
NOP_PAD_ANOMALY_05000198 \
|
||||||
"%0 = w[%1] (z);" \
|
#asm_size "[%0] = %1;" \
|
||||||
: "=d" (__v) \
|
|
||||||
: "a" (addr) \
|
|
||||||
); \
|
|
||||||
__v; })
|
|
||||||
|
|
||||||
#define bfin_read32(addr) ({ \
|
|
||||||
uint32_t __v; \
|
|
||||||
__asm__ __volatile__( \
|
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
|
||||||
"%0 = [%1];" \
|
|
||||||
: "=d" (__v) \
|
|
||||||
: "a" (addr) \
|
|
||||||
); \
|
|
||||||
__v; })
|
|
||||||
|
|
||||||
#define bfin_write8(addr, val) \
|
|
||||||
__asm__ __volatile__( \
|
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
|
||||||
"b[%0] = %1;" \
|
|
||||||
: \
|
: \
|
||||||
: "a" (addr), "d" ((uint8_t)(val)) \
|
: "a" (addr), "d" ((u##size)(val)) \
|
||||||
: "memory" \
|
: "memory" \
|
||||||
)
|
)
|
||||||
|
|
||||||
#define bfin_write16(addr, val) \
|
#define bfin_read8(addr) _bfin_readX(addr, 8, b, (z))
|
||||||
__asm__ __volatile__( \
|
#define bfin_read16(addr) _bfin_readX(addr, 16, w, (z))
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
#define bfin_read32(addr) _bfin_readX(addr, 32, , )
|
||||||
"w[%0] = %1;" \
|
#define bfin_write8(addr, val) _bfin_writeX(addr, val, 8, b)
|
||||||
: \
|
#define bfin_write16(addr, val) _bfin_writeX(addr, val, 16, w)
|
||||||
: "a" (addr), "d" ((uint16_t)(val)) \
|
#define bfin_write32(addr, val) _bfin_writeX(addr, val, 32, )
|
||||||
: "memory" \
|
|
||||||
)
|
|
||||||
|
|
||||||
#define bfin_write32(addr, val) \
|
|
||||||
__asm__ __volatile__( \
|
|
||||||
NOP_PAD_ANOMALY_05000198 \
|
|
||||||
"[%0] = %1;" \
|
|
||||||
: \
|
|
||||||
: "a" (addr), "d" (val) \
|
|
||||||
: "memory" \
|
|
||||||
)
|
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
|
|
|
@ -30,10 +30,22 @@ __asm__ __volatile__ (
|
||||||
|
|
||||||
#define HZSCALE (268435456 / (1000000/HZ))
|
#define HZSCALE (268435456 / (1000000/HZ))
|
||||||
|
|
||||||
static inline void udelay(unsigned long usecs)
|
static inline unsigned long __to_delay(unsigned long scale)
|
||||||
{
|
{
|
||||||
extern unsigned long loops_per_jiffy;
|
extern unsigned long loops_per_jiffy;
|
||||||
__delay((((usecs * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6);
|
return (((scale * HZSCALE) >> 11) * (loops_per_jiffy >> 11)) >> 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void udelay(unsigned long usecs)
|
||||||
|
{
|
||||||
|
__delay(__to_delay(usecs));
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void ndelay(unsigned long nsecs)
|
||||||
|
{
|
||||||
|
__delay(__to_delay(1) * nsecs / 1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define ndelay ndelay
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,13 +44,8 @@ dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
|
||||||
extern void
|
extern void
|
||||||
__dma_sync(dma_addr_t addr, size_t size, enum dma_data_direction dir);
|
__dma_sync(dma_addr_t addr, size_t size, enum dma_data_direction dir);
|
||||||
static inline void
|
static inline void
|
||||||
_dma_sync(dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
__dma_sync_inline(dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
||||||
{
|
{
|
||||||
if (!__builtin_constant_p(dir)) {
|
|
||||||
__dma_sync(addr, size, dir);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (dir) {
|
switch (dir) {
|
||||||
case DMA_NONE:
|
case DMA_NONE:
|
||||||
BUG();
|
BUG();
|
||||||
|
@ -64,6 +59,14 @@ _dma_sync(dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
static inline void
|
||||||
|
_dma_sync(dma_addr_t addr, size_t size, enum dma_data_direction dir)
|
||||||
|
{
|
||||||
|
if (__builtin_constant_p(dir))
|
||||||
|
__dma_sync_inline(addr, size, dir);
|
||||||
|
else
|
||||||
|
__dma_sync(addr, size, dir);
|
||||||
|
}
|
||||||
|
|
||||||
static inline dma_addr_t
|
static inline dma_addr_t
|
||||||
dma_map_single(struct device *dev, void *ptr, size_t size,
|
dma_map_single(struct device *dev, void *ptr, size_t size,
|
||||||
|
|
|
@ -262,6 +262,10 @@ static inline void dma_disable_irq(unsigned int channel)
|
||||||
{
|
{
|
||||||
disable_irq(dma_ch[channel].irq);
|
disable_irq(dma_ch[channel].irq);
|
||||||
}
|
}
|
||||||
|
static inline void dma_disable_irq_nosync(unsigned int channel)
|
||||||
|
{
|
||||||
|
disable_irq_nosync(dma_ch[channel].irq);
|
||||||
|
}
|
||||||
static inline void dma_enable_irq(unsigned int channel)
|
static inline void dma_enable_irq(unsigned int channel)
|
||||||
{
|
{
|
||||||
enable_irq(dma_ch[channel].irq);
|
enable_irq(dma_ch[channel].irq);
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
|
|
||||||
#define VLEV 0x00F0 /* Internal Voltage Level */
|
#define VLEV 0x00F0 /* Internal Voltage Level */
|
||||||
#ifdef __ADSPBF52x__
|
#ifdef __ADSPBF52x__
|
||||||
#define VLEV_085 0x0040 /* VLEV = 0.85 V (-5% - +10% Accuracy) */
|
#define VLEV_085 0x0040 /* VLEV = 0.85 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_090 0x0050 /* VLEV = 0.90 V (-5% - +10% Accuracy) */
|
#define VLEV_090 0x0050 /* VLEV = 0.90 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_095 0x0060 /* VLEV = 0.95 V (-5% - +10% Accuracy) */
|
#define VLEV_095 0x0060 /* VLEV = 0.95 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_100 0x0070 /* VLEV = 1.00 V (-5% - +10% Accuracy) */
|
#define VLEV_100 0x0070 /* VLEV = 1.00 V (-5% - +10% Accuracy) */
|
||||||
|
@ -84,7 +84,7 @@
|
||||||
#define VLEV_115 0x00A0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */
|
#define VLEV_115 0x00A0 /* VLEV = 1.15 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_120 0x00B0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */
|
#define VLEV_120 0x00B0 /* VLEV = 1.20 V (-5% - +10% Accuracy) */
|
||||||
#else
|
#else
|
||||||
#define VLEV_085 0x0060 /* VLEV = 0.85 V (-5% - +10% Accuracy) */
|
#define VLEV_085 0x0060 /* VLEV = 0.85 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_090 0x0070 /* VLEV = 0.90 V (-5% - +10% Accuracy) */
|
#define VLEV_090 0x0070 /* VLEV = 0.90 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_095 0x0080 /* VLEV = 0.95 V (-5% - +10% Accuracy) */
|
#define VLEV_095 0x0080 /* VLEV = 0.95 V (-5% - +10% Accuracy) */
|
||||||
#define VLEV_100 0x0090 /* VLEV = 1.00 V (-5% - +10% Accuracy) */
|
#define VLEV_100 0x0090 /* VLEV = 1.00 V (-5% - +10% Accuracy) */
|
||||||
|
|
|
@ -22,12 +22,15 @@
|
||||||
#define EF_BFIN_CODE_IN_L2 0x00000040 /* --code-in-l2 */
|
#define EF_BFIN_CODE_IN_L2 0x00000040 /* --code-in-l2 */
|
||||||
#define EF_BFIN_DATA_IN_L2 0x00000080 /* --data-in-l2 */
|
#define EF_BFIN_DATA_IN_L2 0x00000080 /* --data-in-l2 */
|
||||||
|
|
||||||
|
#if 1 /* core dumps not supported, but linux/elfcore.h needs these */
|
||||||
typedef unsigned long elf_greg_t;
|
typedef unsigned long elf_greg_t;
|
||||||
|
|
||||||
#define ELF_NGREG 40 /* (sizeof(struct user_regs_struct) / sizeof(elf_greg_t)) */
|
#define ELF_NGREG (sizeof(struct pt_regs) / sizeof(elf_greg_t))
|
||||||
typedef elf_greg_t elf_gregset_t[ELF_NGREG];
|
typedef elf_greg_t elf_gregset_t[ELF_NGREG];
|
||||||
|
|
||||||
typedef struct { } elf_fpregset_t;
|
typedef struct { } elf_fpregset_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is used to ensure we don't load something for the wrong architecture.
|
* This is used to ensure we don't load something for the wrong architecture.
|
||||||
*/
|
*/
|
||||||
|
@ -55,6 +58,9 @@ do { \
|
||||||
_regs->p2 = _dynamic_addr; \
|
_regs->p2 = _dynamic_addr; \
|
||||||
} while(0)
|
} while(0)
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
#define CORE_DUMP_USE_REGSET
|
||||||
|
#endif
|
||||||
#define ELF_FDPIC_CORE_EFLAGS EF_BFIN_FDPIC
|
#define ELF_FDPIC_CORE_EFLAGS EF_BFIN_FDPIC
|
||||||
#define ELF_EXEC_PAGESIZE 4096
|
#define ELF_EXEC_PAGESIZE 4096
|
||||||
|
|
||||||
|
|
|
@ -10,4 +10,57 @@
|
||||||
|
|
||||||
#define MCOUNT_INSN_SIZE 6 /* sizeof "[++sp] = rets; call __mcount;" */
|
#define MCOUNT_INSN_SIZE 6 /* sizeof "[++sp] = rets; call __mcount;" */
|
||||||
|
|
||||||
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
#ifdef CONFIG_FRAME_POINTER
|
||||||
|
#include <linux/mm.h>
|
||||||
|
|
||||||
|
extern inline void *return_address(unsigned int level)
|
||||||
|
{
|
||||||
|
unsigned long *endstack, *fp, *ret_addr;
|
||||||
|
unsigned int current_level = 0;
|
||||||
|
|
||||||
|
if (level == 0)
|
||||||
|
return __builtin_return_address(0);
|
||||||
|
|
||||||
|
fp = (unsigned long *)__builtin_frame_address(0);
|
||||||
|
endstack = (unsigned long *)PAGE_ALIGN((unsigned long)&level);
|
||||||
|
|
||||||
|
while (((unsigned long)fp & 0x3) == 0 && fp &&
|
||||||
|
(fp + 1) < endstack && current_level < level) {
|
||||||
|
fp = (unsigned long *)*fp;
|
||||||
|
current_level++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (((unsigned long)fp & 0x3) == 0 && fp &&
|
||||||
|
(fp + 1) < endstack)
|
||||||
|
ret_addr = (unsigned long *)*(fp + 1);
|
||||||
|
else
|
||||||
|
ret_addr = NULL;
|
||||||
|
|
||||||
|
return ret_addr;
|
||||||
|
}
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
extern inline void *return_address(unsigned int level)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif /* CONFIG_FRAME_POINTER */
|
||||||
|
|
||||||
|
#define HAVE_ARCH_CALLER_ADDR
|
||||||
|
|
||||||
|
/* inline function or macro may lead to unexpected result */
|
||||||
|
#define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
|
||||||
|
#define CALLER_ADDR1 ((unsigned long)return_address(1))
|
||||||
|
#define CALLER_ADDR2 ((unsigned long)return_address(2))
|
||||||
|
#define CALLER_ADDR3 ((unsigned long)return_address(3))
|
||||||
|
#define CALLER_ADDR4 ((unsigned long)return_address(4))
|
||||||
|
#define CALLER_ADDR5 ((unsigned long)return_address(5))
|
||||||
|
#define CALLER_ADDR6 ((unsigned long)return_address(6))
|
||||||
|
|
||||||
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -70,6 +70,8 @@
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
#include <linux/compiler.h>
|
||||||
|
|
||||||
/***********************************************************
|
/***********************************************************
|
||||||
*
|
*
|
||||||
* FUNCTIONS: Blackfin General Purpose Ports Access Functions
|
* FUNCTIONS: Blackfin General Purpose Ports Access Functions
|
||||||
|
@ -223,6 +225,9 @@ int bfin_gpio_direction_output(unsigned gpio, int value);
|
||||||
int bfin_gpio_get_value(unsigned gpio);
|
int bfin_gpio_get_value(unsigned gpio);
|
||||||
void bfin_gpio_set_value(unsigned gpio, int value);
|
void bfin_gpio_set_value(unsigned gpio, int value);
|
||||||
|
|
||||||
|
#include <asm/irq.h>
|
||||||
|
#include <asm/errno.h>
|
||||||
|
|
||||||
#ifdef CONFIG_GPIOLIB
|
#ifdef CONFIG_GPIOLIB
|
||||||
#include <asm-generic/gpio.h> /* cansleep wrappers */
|
#include <asm-generic/gpio.h> /* cansleep wrappers */
|
||||||
|
|
||||||
|
@ -247,6 +252,11 @@ static inline int gpio_cansleep(unsigned int gpio)
|
||||||
return __gpio_cansleep(gpio);
|
return __gpio_cansleep(gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline int gpio_to_irq(unsigned gpio)
|
||||||
|
{
|
||||||
|
return __gpio_to_irq(gpio);
|
||||||
|
}
|
||||||
|
|
||||||
#else /* !CONFIG_GPIOLIB */
|
#else /* !CONFIG_GPIOLIB */
|
||||||
|
|
||||||
static inline int gpio_request(unsigned gpio, const char *label)
|
static inline int gpio_request(unsigned gpio, const char *label)
|
||||||
|
@ -279,10 +289,6 @@ static inline void gpio_set_value(unsigned gpio, int value)
|
||||||
return bfin_gpio_set_value(gpio, value);
|
return bfin_gpio_set_value(gpio, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <asm-generic/gpio.h> /* cansleep wrappers */
|
|
||||||
#endif /* !CONFIG_GPIOLIB */
|
|
||||||
#include <asm/irq.h>
|
|
||||||
|
|
||||||
static inline int gpio_to_irq(unsigned gpio)
|
static inline int gpio_to_irq(unsigned gpio)
|
||||||
{
|
{
|
||||||
if (likely(gpio < MAX_BLACKFIN_GPIOS))
|
if (likely(gpio < MAX_BLACKFIN_GPIOS))
|
||||||
|
@ -291,6 +297,9 @@ static inline int gpio_to_irq(unsigned gpio)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <asm-generic/gpio.h> /* cansleep wrappers */
|
||||||
|
#endif /* !CONFIG_GPIOLIB */
|
||||||
|
|
||||||
static inline int irq_to_gpio(unsigned irq)
|
static inline int irq_to_gpio(unsigned irq)
|
||||||
{
|
{
|
||||||
return (irq - GPIO_IRQ_BASE);
|
return (irq - GPIO_IRQ_BASE);
|
||||||
|
|
|
@ -12,6 +12,9 @@
|
||||||
|
|
||||||
#include <linux/irqflags.h>
|
#include <linux/irqflags.h>
|
||||||
|
|
||||||
|
/* IRQs that may be used by external irq_chip controllers */
|
||||||
|
#define NR_SPARE_IRQS 32
|
||||||
|
|
||||||
#include <mach/anomaly.h>
|
#include <mach/anomaly.h>
|
||||||
|
|
||||||
/* SYS_IRQS and NR_IRQS are defined in <mach-bf5xx/irq.h> */
|
/* SYS_IRQS and NR_IRQS are defined in <mach-bf5xx/irq.h> */
|
||||||
|
@ -35,4 +38,8 @@
|
||||||
|
|
||||||
#include <asm-generic/irq.h>
|
#include <asm-generic/irq.h>
|
||||||
|
|
||||||
|
#ifdef CONFIG_NMI_WATCHDOG
|
||||||
|
# define ARCH_HAS_NMI_WATCHDOG
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _BFIN_IRQ_H_ */
|
#endif /* _BFIN_IRQ_H_ */
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
#include <asm/pgalloc.h>
|
#include <asm/pgalloc.h>
|
||||||
#include <asm/cplbinit.h>
|
#include <asm/cplbinit.h>
|
||||||
|
#include <asm/sections.h>
|
||||||
|
|
||||||
/* Note: L1 stacks are CPU-private things, so we bluntly disable this
|
/* Note: L1 stacks are CPU-private things, so we bluntly disable this
|
||||||
feature in SMP mode, and use the per-CPU scratch SRAM bank only to
|
feature in SMP mode, and use the per-CPU scratch SRAM bank only to
|
||||||
|
@ -117,9 +118,16 @@ static inline void protect_page(struct mm_struct *mm, unsigned long addr,
|
||||||
unsigned long flags)
|
unsigned long flags)
|
||||||
{
|
{
|
||||||
unsigned long *mask = mm->context.page_rwx_mask;
|
unsigned long *mask = mm->context.page_rwx_mask;
|
||||||
unsigned long page = addr >> 12;
|
unsigned long page;
|
||||||
unsigned long idx = page >> 5;
|
unsigned long idx;
|
||||||
unsigned long bit = 1 << (page & 31);
|
unsigned long bit;
|
||||||
|
|
||||||
|
if (unlikely(addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE))
|
||||||
|
page = (addr - (ASYNC_BANK0_BASE - _ramend)) >> 12;
|
||||||
|
else
|
||||||
|
page = addr >> 12;
|
||||||
|
idx = page >> 5;
|
||||||
|
bit = 1 << (page & 31);
|
||||||
|
|
||||||
if (flags & VM_READ)
|
if (flags & VM_READ)
|
||||||
mask[idx] |= bit;
|
mask[idx] |= bit;
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2010 Analog Devices Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef _BFIN_NMI_H_
|
||||||
|
#define _BFIN_NMI_H_
|
||||||
|
|
||||||
|
#include <linux/nmi.h>
|
||||||
|
|
||||||
|
#endif
|
|
@ -15,4 +15,7 @@
|
||||||
((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
|
((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
|
||||||
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
|
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
|
||||||
|
|
||||||
|
#include <asm-generic/memory_model.h>
|
||||||
|
#include <asm-generic/getorder.h>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
|
||||||
|
struct task_struct;
|
||||||
|
|
||||||
/* this struct defines the way the registers are stored on the
|
/* this struct defines the way the registers are stored on the
|
||||||
stack during a system call. */
|
stack during a system call. */
|
||||||
|
|
||||||
|
@ -101,9 +103,30 @@ struct pt_regs {
|
||||||
master interrupt enable. */
|
master interrupt enable. */
|
||||||
#define user_mode(regs) (!(((regs)->ipend & ~0x10) & (((regs)->ipend & ~0x10) - 1)))
|
#define user_mode(regs) (!(((regs)->ipend & ~0x10) & (((regs)->ipend & ~0x10) - 1)))
|
||||||
#define instruction_pointer(regs) ((regs)->pc)
|
#define instruction_pointer(regs) ((regs)->pc)
|
||||||
|
#define user_stack_pointer(regs) ((regs)->usp)
|
||||||
#define profile_pc(regs) instruction_pointer(regs)
|
#define profile_pc(regs) instruction_pointer(regs)
|
||||||
extern void show_regs(struct pt_regs *);
|
extern void show_regs(struct pt_regs *);
|
||||||
|
|
||||||
|
#define arch_has_single_step() (1)
|
||||||
|
extern void user_enable_single_step(struct task_struct *child);
|
||||||
|
extern void user_disable_single_step(struct task_struct *child);
|
||||||
|
/* common code demands this function */
|
||||||
|
#define ptrace_disable(child) user_disable_single_step(child)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Get the address of the live pt_regs for the specified task.
|
||||||
|
* These are saved onto the top kernel stack when the process
|
||||||
|
* is not running.
|
||||||
|
*
|
||||||
|
* Note: if a user thread is execve'd from kernel space, the
|
||||||
|
* kernel stack will not be empty on entry to the kernel, so
|
||||||
|
* ptracing these tasks will fail.
|
||||||
|
*/
|
||||||
|
#define task_pt_regs(task) \
|
||||||
|
(struct pt_regs *) \
|
||||||
|
((unsigned long)task_stack_page(task) + \
|
||||||
|
(THREAD_SIZE - sizeof(struct pt_regs)))
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
|
|
||||||
#endif /* __ASSEMBLY__ */
|
#endif /* __ASSEMBLY__ */
|
||||||
|
@ -173,4 +196,6 @@ extern void show_regs(struct pt_regs *);
|
||||||
#define PT_FDPIC_EXEC 232
|
#define PT_FDPIC_EXEC 232
|
||||||
#define PT_FDPIC_INTERP 236
|
#define PT_FDPIC_INTERP 236
|
||||||
|
|
||||||
|
#define PT_LAST_PSEUDO PT_FDPIC_INTERP
|
||||||
|
|
||||||
#endif /* _BFIN_PTRACE_H */
|
#endif /* _BFIN_PTRACE_H */
|
||||||
|
|
|
@ -21,6 +21,9 @@ extern unsigned long memory_start, memory_end, physical_mem_end;
|
||||||
extern char _stext_l1[], _etext_l1[], _text_l1_lma[], __weak _text_l1_len[];
|
extern char _stext_l1[], _etext_l1[], _text_l1_lma[], __weak _text_l1_len[];
|
||||||
extern char _sdata_l1[], _edata_l1[], _sbss_l1[], _ebss_l1[],
|
extern char _sdata_l1[], _edata_l1[], _sbss_l1[], _ebss_l1[],
|
||||||
_data_l1_lma[], __weak _data_l1_len[];
|
_data_l1_lma[], __weak _data_l1_len[];
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
extern char _data_lma[], _data_len[], _sinitdata[], _einitdata[], _init_data_lma[], _init_data_len[];
|
||||||
|
#endif
|
||||||
extern char _sdata_b_l1[], _edata_b_l1[], _sbss_b_l1[], _ebss_b_l1[],
|
extern char _sdata_b_l1[], _edata_b_l1[], _sbss_b_l1[], _ebss_b_l1[],
|
||||||
_data_b_l1_lma[], __weak _data_b_l1_len[];
|
_data_b_l1_lma[], __weak _data_b_l1_len[];
|
||||||
extern char _stext_l2[], _etext_l2[], _sdata_l2[], _edata_l2[],
|
extern char _stext_l2[], _etext_l2[], _sdata_l2[], _edata_l2[],
|
||||||
|
|
|
@ -22,8 +22,23 @@ extern char coreb_trampoline_start, coreb_trampoline_end;
|
||||||
struct corelock_slot {
|
struct corelock_slot {
|
||||||
int lock;
|
int lock;
|
||||||
};
|
};
|
||||||
|
extern struct corelock_slot corelock;
|
||||||
|
|
||||||
|
#ifdef __ARCH_SYNC_CORE_ICACHE
|
||||||
|
extern unsigned long icache_invld_count[NR_CPUS];
|
||||||
|
#endif
|
||||||
|
#ifdef __ARCH_SYNC_CORE_DCACHE
|
||||||
|
extern unsigned long dcache_invld_count[NR_CPUS];
|
||||||
|
#endif
|
||||||
|
|
||||||
void smp_icache_flush_range_others(unsigned long start,
|
void smp_icache_flush_range_others(unsigned long start,
|
||||||
unsigned long end);
|
unsigned long end);
|
||||||
|
#ifdef CONFIG_HOTPLUG_CPU
|
||||||
|
void coreb_sleep(u32 sic_iwr0, u32 sic_iwr1, u32 sic_iwr2);
|
||||||
|
void cpu_die(void);
|
||||||
|
void platform_cpu_die(void);
|
||||||
|
int __cpu_disable(void);
|
||||||
|
int __cpu_die(unsigned int cpu);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* !__ASM_BLACKFIN_SMP_H */
|
#endif /* !__ASM_BLACKFIN_SMP_H */
|
||||||
|
|
|
@ -0,0 +1,96 @@
|
||||||
|
/*
|
||||||
|
* Magic syscall break down functions
|
||||||
|
*
|
||||||
|
* Copyright 2010 Analog Devices Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __ASM_BLACKFIN_SYSCALL_H__
|
||||||
|
#define __ASM_BLACKFIN_SYSCALL_H__
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Blackfin syscalls are simple:
|
||||||
|
* enter:
|
||||||
|
* p0: syscall number
|
||||||
|
* r{0,1,2,3,4,5}: syscall args 0,1,2,3,4,5
|
||||||
|
* exit:
|
||||||
|
* r0: return/error value
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/err.h>
|
||||||
|
#include <linux/sched.h>
|
||||||
|
#include <asm/ptrace.h>
|
||||||
|
|
||||||
|
static inline long
|
||||||
|
syscall_get_nr(struct task_struct *task, struct pt_regs *regs)
|
||||||
|
{
|
||||||
|
return regs->p0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
syscall_rollback(struct task_struct *task, struct pt_regs *regs)
|
||||||
|
{
|
||||||
|
regs->p0 = regs->orig_p0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long
|
||||||
|
syscall_get_error(struct task_struct *task, struct pt_regs *regs)
|
||||||
|
{
|
||||||
|
return IS_ERR_VALUE(regs->r0) ? regs->r0 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline long
|
||||||
|
syscall_get_return_value(struct task_struct *task, struct pt_regs *regs)
|
||||||
|
{
|
||||||
|
return regs->r0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void
|
||||||
|
syscall_set_return_value(struct task_struct *task, struct pt_regs *regs,
|
||||||
|
int error, long val)
|
||||||
|
{
|
||||||
|
regs->r0 = error ? -error : val;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* syscall_get_arguments()
|
||||||
|
* @task: unused
|
||||||
|
* @regs: the register layout to extract syscall arguments from
|
||||||
|
* @i: first syscall argument to extract
|
||||||
|
* @n: number of syscall arguments to extract
|
||||||
|
* @args: array to return the syscall arguments in
|
||||||
|
*
|
||||||
|
* args[0] gets i'th argument, args[n - 1] gets the i+n-1'th argument
|
||||||
|
*/
|
||||||
|
static inline void
|
||||||
|
syscall_get_arguments(struct task_struct *task, struct pt_regs *regs,
|
||||||
|
unsigned int i, unsigned int n, unsigned long *args)
|
||||||
|
{
|
||||||
|
/*
|
||||||
|
* Assume the ptrace layout doesn't change -- r5 is first in memory,
|
||||||
|
* then r4, ..., then r0. So we simply reverse the ptrace register
|
||||||
|
* array in memory to store into the args array.
|
||||||
|
*/
|
||||||
|
long *aregs = ®s->r0 - i;
|
||||||
|
|
||||||
|
BUG_ON(i > 5 || i + n > 6);
|
||||||
|
|
||||||
|
while (n--)
|
||||||
|
*args++ = *aregs--;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* See syscall_get_arguments() comments */
|
||||||
|
static inline void
|
||||||
|
syscall_set_arguments(struct task_struct *task, struct pt_regs *regs,
|
||||||
|
unsigned int i, unsigned int n, const unsigned long *args)
|
||||||
|
{
|
||||||
|
long *aregs = ®s->r0 - i;
|
||||||
|
|
||||||
|
BUG_ON(i > 5 || i + n > 6);
|
||||||
|
|
||||||
|
while (n--)
|
||||||
|
*aregs-- = *args++;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2004-2009 Analog Devices Inc.
|
* Copyright 2004-2010 Analog Devices Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the GPL-2 or later.
|
* Licensed under the GPL-2 or later.
|
||||||
*/
|
*/
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
/* Thread Align Mask to reach to the top of the stack
|
/* Thread Align Mask to reach to the top of the stack
|
||||||
* for any process
|
* for any process
|
||||||
*/
|
*/
|
||||||
#define ALIGN_PAGE_MASK 0xffffe000
|
#define ALIGN_PAGE_MASK 0xffffe000
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Size of kernel stack for each process. This must be a power of 2...
|
* Size of kernel stack for each process. This must be a power of 2...
|
||||||
|
@ -57,7 +57,7 @@ struct thread_info {
|
||||||
.exec_domain = &default_exec_domain, \
|
.exec_domain = &default_exec_domain, \
|
||||||
.flags = 0, \
|
.flags = 0, \
|
||||||
.cpu = 0, \
|
.cpu = 0, \
|
||||||
.preempt_count = INIT_PREEMPT_COUNT, \
|
.preempt_count = INIT_PREEMPT_COUNT, \
|
||||||
.restart_block = { \
|
.restart_block = { \
|
||||||
.fn = do_no_restart_syscall, \
|
.fn = do_no_restart_syscall, \
|
||||||
}, \
|
}, \
|
||||||
|
@ -73,8 +73,7 @@ __attribute_const__
|
||||||
static inline struct thread_info *current_thread_info(void)
|
static inline struct thread_info *current_thread_info(void)
|
||||||
{
|
{
|
||||||
struct thread_info *ti;
|
struct thread_info *ti;
|
||||||
__asm__("%0 = sp;" : "=da"(ti) :
|
__asm__("%0 = sp;" : "=da"(ti));
|
||||||
);
|
|
||||||
return (struct thread_info *)((long)ti & ~((long)THREAD_SIZE-1));
|
return (struct thread_info *)((long)ti & ~((long)THREAD_SIZE-1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,21 +98,23 @@ static inline struct thread_info *current_thread_info(void)
|
||||||
#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
|
#define TIF_NEED_RESCHED 2 /* rescheduling necessary */
|
||||||
#define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling
|
#define TIF_POLLING_NRFLAG 3 /* true if poll_idle() is polling
|
||||||
TIF_NEED_RESCHED */
|
TIF_NEED_RESCHED */
|
||||||
#define TIF_MEMDIE 4
|
#define TIF_MEMDIE 4
|
||||||
#define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */
|
#define TIF_RESTORE_SIGMASK 5 /* restore signal mask in do_signal() */
|
||||||
#define TIF_FREEZE 6 /* is freezing for suspend */
|
#define TIF_FREEZE 6 /* is freezing for suspend */
|
||||||
#define TIF_IRQ_SYNC 7 /* sync pipeline stage */
|
#define TIF_IRQ_SYNC 7 /* sync pipeline stage */
|
||||||
#define TIF_NOTIFY_RESUME 8 /* callback before returning to user */
|
#define TIF_NOTIFY_RESUME 8 /* callback before returning to user */
|
||||||
|
#define TIF_SINGLESTEP 9
|
||||||
|
|
||||||
/* as above, but as bit values */
|
/* as above, but as bit values */
|
||||||
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
||||||
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
||||||
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
||||||
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
|
||||||
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
|
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
|
||||||
#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
|
#define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK)
|
||||||
#define _TIF_FREEZE (1<<TIF_FREEZE)
|
#define _TIF_FREEZE (1<<TIF_FREEZE)
|
||||||
#define _TIF_IRQ_SYNC (1<<TIF_IRQ_SYNC)
|
#define _TIF_IRQ_SYNC (1<<TIF_IRQ_SYNC)
|
||||||
|
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
||||||
|
#define _TIF_SINGLESTEP (1<<TIF_SINGLESTEP)
|
||||||
|
|
||||||
#define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */
|
#define _TIF_WORK_MASK 0x0000FFFE /* work to do on interrupt/exception return */
|
||||||
|
|
||||||
|
|
|
@ -23,9 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CONFIG_CPU_FREQ
|
#ifndef CONFIG_CPU_FREQ
|
||||||
#define TIME_SCALE 1
|
# define TIME_SCALE 1
|
||||||
#define __bfin_cycles_off (0)
|
|
||||||
#define __bfin_cycles_mod (0)
|
|
||||||
#else
|
#else
|
||||||
/*
|
/*
|
||||||
* Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 .
|
* Blackfin CPU frequency scaling supports max Core Clock 1, 1/2 and 1/4 .
|
||||||
|
@ -33,9 +31,16 @@
|
||||||
* adjust the Core Timer Presale Register. This way we don't lose time.
|
* adjust the Core Timer Presale Register. This way we don't lose time.
|
||||||
*/
|
*/
|
||||||
#define TIME_SCALE 4
|
#define TIME_SCALE 4
|
||||||
|
|
||||||
|
# ifdef CONFIG_CYCLES_CLOCKSOURCE
|
||||||
extern unsigned long long __bfin_cycles_off;
|
extern unsigned long long __bfin_cycles_off;
|
||||||
extern unsigned int __bfin_cycles_mod;
|
extern unsigned int __bfin_cycles_mod;
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_TICKSOURCE_CORETMR)
|
||||||
|
extern void bfin_coretmr_init(void);
|
||||||
|
extern void bfin_coretmr_clockevent_init(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern void __init setup_core_timer(void);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -25,6 +25,7 @@ obj-$(CONFIG_CPLB_INFO) += cplbinfo.o
|
||||||
obj-$(CONFIG_MODULES) += module.o
|
obj-$(CONFIG_MODULES) += module.o
|
||||||
obj-$(CONFIG_KGDB) += kgdb.o
|
obj-$(CONFIG_KGDB) += kgdb.o
|
||||||
obj-$(CONFIG_KGDB_TESTS) += kgdb_test.o
|
obj-$(CONFIG_KGDB_TESTS) += kgdb_test.o
|
||||||
|
obj-$(CONFIG_NMI_WATCHDOG) += nmi.o
|
||||||
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
||||||
obj-$(CONFIG_EARLY_PRINTK) += shadow_console.o
|
obj-$(CONFIG_EARLY_PRINTK) += shadow_console.o
|
||||||
obj-$(CONFIG_STACKTRACE) += stacktrace.o
|
obj-$(CONFIG_STACKTRACE) += stacktrace.o
|
||||||
|
|
|
@ -91,7 +91,7 @@ late_initcall(proc_dma_init);
|
||||||
*/
|
*/
|
||||||
int request_dma(unsigned int channel, const char *device_id)
|
int request_dma(unsigned int channel, const char *device_id)
|
||||||
{
|
{
|
||||||
pr_debug("request_dma() : BEGIN \n");
|
pr_debug("request_dma() : BEGIN\n");
|
||||||
|
|
||||||
if (device_id == NULL)
|
if (device_id == NULL)
|
||||||
printk(KERN_WARNING "request_dma(%u): no device_id given\n", channel);
|
printk(KERN_WARNING "request_dma(%u): no device_id given\n", channel);
|
||||||
|
@ -107,7 +107,7 @@ int request_dma(unsigned int channel, const char *device_id)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (atomic_cmpxchg(&dma_ch[channel].chan_status, 0, 1)) {
|
if (atomic_cmpxchg(&dma_ch[channel].chan_status, 0, 1)) {
|
||||||
pr_debug("DMA CHANNEL IN USE \n");
|
pr_debug("DMA CHANNEL IN USE\n");
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,7 +131,7 @@ int request_dma(unsigned int channel, const char *device_id)
|
||||||
* you have to request DMA, before doing any operations on
|
* you have to request DMA, before doing any operations on
|
||||||
* descriptor/channel
|
* descriptor/channel
|
||||||
*/
|
*/
|
||||||
pr_debug("request_dma() : END \n");
|
pr_debug("request_dma() : END\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(request_dma);
|
EXPORT_SYMBOL(request_dma);
|
||||||
|
@ -171,7 +171,7 @@ static void clear_dma_buffer(unsigned int channel)
|
||||||
|
|
||||||
void free_dma(unsigned int channel)
|
void free_dma(unsigned int channel)
|
||||||
{
|
{
|
||||||
pr_debug("freedma() : BEGIN \n");
|
pr_debug("freedma() : BEGIN\n");
|
||||||
BUG_ON(channel >= MAX_DMA_CHANNELS ||
|
BUG_ON(channel >= MAX_DMA_CHANNELS ||
|
||||||
!atomic_read(&dma_ch[channel].chan_status));
|
!atomic_read(&dma_ch[channel].chan_status));
|
||||||
|
|
||||||
|
@ -185,7 +185,7 @@ void free_dma(unsigned int channel)
|
||||||
/* Clear the DMA Variable in the Channel */
|
/* Clear the DMA Variable in the Channel */
|
||||||
atomic_set(&dma_ch[channel].chan_status, 0);
|
atomic_set(&dma_ch[channel].chan_status, 0);
|
||||||
|
|
||||||
pr_debug("freedma() : END \n");
|
pr_debug("freedma() : END\n");
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(free_dma);
|
EXPORT_SYMBOL(free_dma);
|
||||||
|
|
||||||
|
|
|
@ -1289,44 +1289,50 @@ __initcall(gpio_register_proc);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_GPIOLIB
|
#ifdef CONFIG_GPIOLIB
|
||||||
int bfin_gpiolib_direction_input(struct gpio_chip *chip, unsigned gpio)
|
static int bfin_gpiolib_direction_input(struct gpio_chip *chip, unsigned gpio)
|
||||||
{
|
{
|
||||||
return bfin_gpio_direction_input(gpio);
|
return bfin_gpio_direction_input(gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
int bfin_gpiolib_direction_output(struct gpio_chip *chip, unsigned gpio, int level)
|
static int bfin_gpiolib_direction_output(struct gpio_chip *chip, unsigned gpio, int level)
|
||||||
{
|
{
|
||||||
return bfin_gpio_direction_output(gpio, level);
|
return bfin_gpio_direction_output(gpio, level);
|
||||||
}
|
}
|
||||||
|
|
||||||
int bfin_gpiolib_get_value(struct gpio_chip *chip, unsigned gpio)
|
static int bfin_gpiolib_get_value(struct gpio_chip *chip, unsigned gpio)
|
||||||
{
|
{
|
||||||
return bfin_gpio_get_value(gpio);
|
return bfin_gpio_get_value(gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bfin_gpiolib_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
static void bfin_gpiolib_set_value(struct gpio_chip *chip, unsigned gpio, int value)
|
||||||
{
|
{
|
||||||
return bfin_gpio_set_value(gpio, value);
|
return bfin_gpio_set_value(gpio, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
int bfin_gpiolib_gpio_request(struct gpio_chip *chip, unsigned gpio)
|
static int bfin_gpiolib_gpio_request(struct gpio_chip *chip, unsigned gpio)
|
||||||
{
|
{
|
||||||
return bfin_gpio_request(gpio, chip->label);
|
return bfin_gpio_request(gpio, chip->label);
|
||||||
}
|
}
|
||||||
|
|
||||||
void bfin_gpiolib_gpio_free(struct gpio_chip *chip, unsigned gpio)
|
static void bfin_gpiolib_gpio_free(struct gpio_chip *chip, unsigned gpio)
|
||||||
{
|
{
|
||||||
return bfin_gpio_free(gpio);
|
return bfin_gpio_free(gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int bfin_gpiolib_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
|
||||||
|
{
|
||||||
|
return gpio + GPIO_IRQ_BASE;
|
||||||
|
}
|
||||||
|
|
||||||
static struct gpio_chip bfin_chip = {
|
static struct gpio_chip bfin_chip = {
|
||||||
.label = "Blackfin-GPIOlib",
|
.label = "BFIN-GPIO",
|
||||||
.direction_input = bfin_gpiolib_direction_input,
|
.direction_input = bfin_gpiolib_direction_input,
|
||||||
.get = bfin_gpiolib_get_value,
|
.get = bfin_gpiolib_get_value,
|
||||||
.direction_output = bfin_gpiolib_direction_output,
|
.direction_output = bfin_gpiolib_direction_output,
|
||||||
.set = bfin_gpiolib_set_value,
|
.set = bfin_gpiolib_set_value,
|
||||||
.request = bfin_gpiolib_gpio_request,
|
.request = bfin_gpiolib_gpio_request,
|
||||||
.free = bfin_gpiolib_gpio_free,
|
.free = bfin_gpiolib_gpio_free,
|
||||||
|
.to_irq = bfin_gpiolib_gpio_to_irq,
|
||||||
.base = 0,
|
.base = 0,
|
||||||
.ngpio = MAX_BLACKFIN_GPIOS,
|
.ngpio = MAX_BLACKFIN_GPIOS,
|
||||||
};
|
};
|
||||||
|
|
|
@ -64,6 +64,15 @@ void __init generate_cplb_tables_cpu(unsigned int cpu)
|
||||||
icplb_tbl[cpu][i_i++].data = i_data | (addr == 0 ? CPLB_USER_RD : 0);
|
icplb_tbl[cpu][i_i++].data = i_data | (addr == 0 ? CPLB_USER_RD : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
/* Cover kernel XIP flash area */
|
||||||
|
addr = CONFIG_ROM_BASE & ~(4 * 1024 * 1024 - 1);
|
||||||
|
dcplb_tbl[cpu][i_d].addr = addr;
|
||||||
|
dcplb_tbl[cpu][i_d++].data = d_data | CPLB_USER_RD;
|
||||||
|
icplb_tbl[cpu][i_i].addr = addr;
|
||||||
|
icplb_tbl[cpu][i_i++].data = i_data | CPLB_USER_RD;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Cover L1 memory. One 4M area for code and data each is enough. */
|
/* Cover L1 memory. One 4M area for code and data each is enough. */
|
||||||
#if L1_DATA_A_LENGTH > 0 || L1_DATA_B_LENGTH > 0
|
#if L1_DATA_A_LENGTH > 0 || L1_DATA_B_LENGTH > 0
|
||||||
dcplb_tbl[cpu][i_d].addr = get_l1_data_a_start_cpu(cpu);
|
dcplb_tbl[cpu][i_d].addr = get_l1_data_a_start_cpu(cpu);
|
||||||
|
|
|
@ -31,6 +31,12 @@ int nr_dcplb_miss[NR_CPUS], nr_icplb_miss[NR_CPUS];
|
||||||
int nr_icplb_supv_miss[NR_CPUS], nr_dcplb_prot[NR_CPUS];
|
int nr_icplb_supv_miss[NR_CPUS], nr_dcplb_prot[NR_CPUS];
|
||||||
int nr_cplb_flush[NR_CPUS];
|
int nr_cplb_flush[NR_CPUS];
|
||||||
|
|
||||||
|
#ifdef CONFIG_EXCPT_IRQ_SYSC_L1
|
||||||
|
#define MGR_ATTR __attribute__((l1_text))
|
||||||
|
#else
|
||||||
|
#define MGR_ATTR
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Given the contents of the status register, return the index of the
|
* Given the contents of the status register, return the index of the
|
||||||
* CPLB that caused the fault.
|
* CPLB that caused the fault.
|
||||||
|
@ -59,7 +65,7 @@ static int icplb_rr_index[NR_CPUS], dcplb_rr_index[NR_CPUS];
|
||||||
/*
|
/*
|
||||||
* Find an ICPLB entry to be evicted and return its index.
|
* Find an ICPLB entry to be evicted and return its index.
|
||||||
*/
|
*/
|
||||||
static int evict_one_icplb(unsigned int cpu)
|
MGR_ATTR static int evict_one_icplb(unsigned int cpu)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = first_switched_icplb; i < MAX_CPLBS; i++)
|
for (i = first_switched_icplb; i < MAX_CPLBS; i++)
|
||||||
|
@ -74,7 +80,7 @@ static int evict_one_icplb(unsigned int cpu)
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int evict_one_dcplb(unsigned int cpu)
|
MGR_ATTR static int evict_one_dcplb(unsigned int cpu)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
for (i = first_switched_dcplb; i < MAX_CPLBS; i++)
|
for (i = first_switched_dcplb; i < MAX_CPLBS; i++)
|
||||||
|
@ -89,7 +95,7 @@ static int evict_one_dcplb(unsigned int cpu)
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
|
|
||||||
static noinline int dcplb_miss(unsigned int cpu)
|
MGR_ATTR static noinline int dcplb_miss(unsigned int cpu)
|
||||||
{
|
{
|
||||||
unsigned long addr = bfin_read_DCPLB_FAULT_ADDR();
|
unsigned long addr = bfin_read_DCPLB_FAULT_ADDR();
|
||||||
int status = bfin_read_DCPLB_STATUS();
|
int status = bfin_read_DCPLB_STATUS();
|
||||||
|
@ -114,10 +120,15 @@ static noinline int dcplb_miss(unsigned int cpu)
|
||||||
d_data = L2_DMEMORY;
|
d_data = L2_DMEMORY;
|
||||||
} else if (addr >= physical_mem_end) {
|
} else if (addr >= physical_mem_end) {
|
||||||
if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
|
if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
|
||||||
addr &= ~(4 * 1024 * 1024 - 1);
|
mask = current_rwx_mask[cpu];
|
||||||
d_data &= ~PAGE_SIZE_4KB;
|
if (mask) {
|
||||||
d_data |= PAGE_SIZE_4MB;
|
int page = (addr - (ASYNC_BANK0_BASE - _ramend)) >> PAGE_SHIFT;
|
||||||
d_data |= CPLB_USER_RD | CPLB_USER_WR;
|
int idx = page >> 5;
|
||||||
|
int bit = 1 << (page & 31);
|
||||||
|
|
||||||
|
if (mask[idx] & bit)
|
||||||
|
d_data |= CPLB_USER_RD;
|
||||||
|
}
|
||||||
} else if (addr >= BOOT_ROM_START && addr < BOOT_ROM_START + BOOT_ROM_LENGTH
|
} else if (addr >= BOOT_ROM_START && addr < BOOT_ROM_START + BOOT_ROM_LENGTH
|
||||||
&& (status & (FAULT_RW | FAULT_USERSUPV)) == FAULT_USERSUPV) {
|
&& (status & (FAULT_RW | FAULT_USERSUPV)) == FAULT_USERSUPV) {
|
||||||
addr &= ~(1 * 1024 * 1024 - 1);
|
addr &= ~(1 * 1024 * 1024 - 1);
|
||||||
|
@ -126,7 +137,9 @@ static noinline int dcplb_miss(unsigned int cpu)
|
||||||
} else
|
} else
|
||||||
return CPLB_PROT_VIOL;
|
return CPLB_PROT_VIOL;
|
||||||
} else if (addr >= _ramend) {
|
} else if (addr >= _ramend) {
|
||||||
d_data |= CPLB_USER_RD | CPLB_USER_WR;
|
d_data |= CPLB_USER_RD | CPLB_USER_WR;
|
||||||
|
if (reserved_mem_dcache_on)
|
||||||
|
d_data |= CPLB_L1_CHBL;
|
||||||
} else {
|
} else {
|
||||||
mask = current_rwx_mask[cpu];
|
mask = current_rwx_mask[cpu];
|
||||||
if (mask) {
|
if (mask) {
|
||||||
|
@ -156,7 +169,7 @@ static noinline int dcplb_miss(unsigned int cpu)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static noinline int icplb_miss(unsigned int cpu)
|
MGR_ATTR static noinline int icplb_miss(unsigned int cpu)
|
||||||
{
|
{
|
||||||
unsigned long addr = bfin_read_ICPLB_FAULT_ADDR();
|
unsigned long addr = bfin_read_ICPLB_FAULT_ADDR();
|
||||||
int status = bfin_read_ICPLB_STATUS();
|
int status = bfin_read_ICPLB_STATUS();
|
||||||
|
@ -204,10 +217,19 @@ static noinline int icplb_miss(unsigned int cpu)
|
||||||
i_data = L2_IMEMORY;
|
i_data = L2_IMEMORY;
|
||||||
} else if (addr >= physical_mem_end) {
|
} else if (addr >= physical_mem_end) {
|
||||||
if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
|
if (addr >= ASYNC_BANK0_BASE && addr < ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE) {
|
||||||
addr &= ~(4 * 1024 * 1024 - 1);
|
if (!(status & FAULT_USERSUPV)) {
|
||||||
i_data &= ~PAGE_SIZE_4KB;
|
unsigned long *mask = current_rwx_mask[cpu];
|
||||||
i_data |= PAGE_SIZE_4MB;
|
|
||||||
i_data |= CPLB_USER_RD;
|
if (mask) {
|
||||||
|
int page = (addr - (ASYNC_BANK0_BASE - _ramend)) >> PAGE_SHIFT;
|
||||||
|
int idx = page >> 5;
|
||||||
|
int bit = 1 << (page & 31);
|
||||||
|
|
||||||
|
mask += 2 * page_mask_nelts;
|
||||||
|
if (mask[idx] & bit)
|
||||||
|
i_data |= CPLB_USER_RD;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else if (addr >= BOOT_ROM_START && addr < BOOT_ROM_START + BOOT_ROM_LENGTH
|
} else if (addr >= BOOT_ROM_START && addr < BOOT_ROM_START + BOOT_ROM_LENGTH
|
||||||
&& (status & FAULT_USERSUPV)) {
|
&& (status & FAULT_USERSUPV)) {
|
||||||
addr &= ~(1 * 1024 * 1024 - 1);
|
addr &= ~(1 * 1024 * 1024 - 1);
|
||||||
|
@ -217,6 +239,8 @@ static noinline int icplb_miss(unsigned int cpu)
|
||||||
return CPLB_PROT_VIOL;
|
return CPLB_PROT_VIOL;
|
||||||
} else if (addr >= _ramend) {
|
} else if (addr >= _ramend) {
|
||||||
i_data |= CPLB_USER_RD;
|
i_data |= CPLB_USER_RD;
|
||||||
|
if (reserved_mem_icache_on)
|
||||||
|
i_data |= CPLB_L1_CHBL;
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Two cases to distinguish - a supervisor access must
|
* Two cases to distinguish - a supervisor access must
|
||||||
|
@ -251,7 +275,7 @@ static noinline int icplb_miss(unsigned int cpu)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static noinline int dcplb_protection_fault(unsigned int cpu)
|
MGR_ATTR static noinline int dcplb_protection_fault(unsigned int cpu)
|
||||||
{
|
{
|
||||||
int status = bfin_read_DCPLB_STATUS();
|
int status = bfin_read_DCPLB_STATUS();
|
||||||
|
|
||||||
|
@ -271,7 +295,7 @@ static noinline int dcplb_protection_fault(unsigned int cpu)
|
||||||
return CPLB_PROT_VIOL;
|
return CPLB_PROT_VIOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
int cplb_hdr(int seqstat, struct pt_regs *regs)
|
MGR_ATTR int cplb_hdr(int seqstat, struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
int cause = seqstat & 0x3f;
|
int cause = seqstat & 0x3f;
|
||||||
unsigned int cpu = raw_smp_processor_id();
|
unsigned int cpu = raw_smp_processor_id();
|
||||||
|
|
|
@ -56,6 +56,15 @@ void __init generate_cplb_tables_cpu(unsigned int cpu)
|
||||||
i_tbl[i_i++].data = SDRAM_IGENERIC | PAGE_SIZE_4MB;
|
i_tbl[i_i++].data = SDRAM_IGENERIC | PAGE_SIZE_4MB;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
/* Cover kernel XIP flash area */
|
||||||
|
addr = CONFIG_ROM_BASE & ~(4 * 1024 * 1024 - 1);
|
||||||
|
d_tbl[i_d].addr = addr;
|
||||||
|
d_tbl[i_d++].data = SDRAM_DGENERIC | PAGE_SIZE_4MB;
|
||||||
|
i_tbl[i_i].addr = addr;
|
||||||
|
i_tbl[i_i++].data = SDRAM_IGENERIC | PAGE_SIZE_4MB;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Cover L1 memory. One 4M area for code and data each is enough. */
|
/* Cover L1 memory. One 4M area for code and data each is enough. */
|
||||||
if (cpu == 0) {
|
if (cpu == 0) {
|
||||||
if (L1_DATA_A_LENGTH || L1_DATA_B_LENGTH) {
|
if (L1_DATA_A_LENGTH || L1_DATA_B_LENGTH) {
|
||||||
|
|
|
@ -116,7 +116,7 @@ EXPORT_SYMBOL(dma_free_coherent);
|
||||||
void __dma_sync(dma_addr_t addr, size_t size,
|
void __dma_sync(dma_addr_t addr, size_t size,
|
||||||
enum dma_data_direction dir)
|
enum dma_data_direction dir)
|
||||||
{
|
{
|
||||||
_dma_sync(addr, size, dir);
|
__dma_sync_inline(addr, size, dir);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(__dma_sync);
|
EXPORT_SYMBOL(__dma_sync);
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ ENTRY(_ret_from_fork)
|
||||||
sti r4;
|
sti r4;
|
||||||
#endif /* CONFIG_IPIPE */
|
#endif /* CONFIG_IPIPE */
|
||||||
SP += -12;
|
SP += -12;
|
||||||
call _schedule_tail;
|
pseudo_long_call _schedule_tail, p5;
|
||||||
SP += 12;
|
SP += 12;
|
||||||
r0 = [sp + PT_IPEND];
|
r0 = [sp + PT_IPEND];
|
||||||
cc = bittst(r0,1);
|
cc = bittst(r0,1);
|
||||||
|
@ -79,7 +79,7 @@ ENTRY(_sys_vfork)
|
||||||
r0 += 24;
|
r0 += 24;
|
||||||
[--sp] = rets;
|
[--sp] = rets;
|
||||||
SP += -12;
|
SP += -12;
|
||||||
call _bfin_vfork;
|
pseudo_long_call _bfin_vfork, p2;
|
||||||
SP += 12;
|
SP += 12;
|
||||||
rets = [sp++];
|
rets = [sp++];
|
||||||
rts;
|
rts;
|
||||||
|
@ -90,7 +90,7 @@ ENTRY(_sys_clone)
|
||||||
r0 += 24;
|
r0 += 24;
|
||||||
[--sp] = rets;
|
[--sp] = rets;
|
||||||
SP += -12;
|
SP += -12;
|
||||||
call _bfin_clone;
|
pseudo_long_call _bfin_clone, p2;
|
||||||
SP += 12;
|
SP += 12;
|
||||||
rets = [sp++];
|
rets = [sp++];
|
||||||
rts;
|
rts;
|
||||||
|
@ -101,7 +101,7 @@ ENTRY(_sys_rt_sigreturn)
|
||||||
r0 += 24;
|
r0 += 24;
|
||||||
[--sp] = rets;
|
[--sp] = rets;
|
||||||
SP += -12;
|
SP += -12;
|
||||||
call _do_rt_sigreturn;
|
pseudo_long_call _do_rt_sigreturn, p2;
|
||||||
SP += 12;
|
SP += 12;
|
||||||
rets = [sp++];
|
rets = [sp++];
|
||||||
rts;
|
rts;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* mcount and friends -- ftrace stuff
|
* mcount and friends -- ftrace stuff
|
||||||
*
|
*
|
||||||
* Copyright (C) 2009 Analog Devices Inc.
|
* Copyright (C) 2009-2010 Analog Devices Inc.
|
||||||
* Licensed under the GPL-2 or later.
|
* Licensed under the GPL-2 or later.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -21,6 +21,15 @@
|
||||||
* function will be waiting there. mmmm pie.
|
* function will be waiting there. mmmm pie.
|
||||||
*/
|
*/
|
||||||
ENTRY(__mcount)
|
ENTRY(__mcount)
|
||||||
|
#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
|
||||||
|
/* optional micro optimization: return if stopped */
|
||||||
|
p1.l = _function_trace_stop;
|
||||||
|
p1.h = _function_trace_stop;
|
||||||
|
r3 = [p1];
|
||||||
|
cc = r3 == 0;
|
||||||
|
if ! cc jump _ftrace_stub (bp);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* save third function arg early so we can do testing below */
|
/* save third function arg early so we can do testing below */
|
||||||
[--sp] = r2;
|
[--sp] = r2;
|
||||||
|
|
||||||
|
@ -106,9 +115,12 @@ ENTRY(_ftrace_graph_caller)
|
||||||
[--sp] = r1;
|
[--sp] = r1;
|
||||||
[--sp] = rets;
|
[--sp] = rets;
|
||||||
|
|
||||||
/* prepare_ftrace_return(unsigned long *parent, unsigned long self_addr) */
|
/* prepare_ftrace_return(parent, self_addr, frame_pointer) */
|
||||||
r0 = sp;
|
r0 = sp; /* unsigned long *parent */
|
||||||
r1 = rets;
|
r1 = rets; /* unsigned long self_addr */
|
||||||
|
#ifdef CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST
|
||||||
|
r2 = fp; /* unsigned long frame_pointer */
|
||||||
|
#endif
|
||||||
r0 += 16; /* skip the 4 local regs on stack */
|
r0 += 16; /* skip the 4 local regs on stack */
|
||||||
r1 += -MCOUNT_INSN_SIZE;
|
r1 += -MCOUNT_INSN_SIZE;
|
||||||
call _prepare_ftrace_return;
|
call _prepare_ftrace_return;
|
||||||
|
@ -127,6 +139,9 @@ ENTRY(_return_to_handler)
|
||||||
[--sp] = r1;
|
[--sp] = r1;
|
||||||
|
|
||||||
/* get original return address */
|
/* get original return address */
|
||||||
|
#ifdef CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST
|
||||||
|
r0 = fp; /* Blackfin is sane, so omit this */
|
||||||
|
#endif
|
||||||
call _ftrace_return_to_handler;
|
call _ftrace_return_to_handler;
|
||||||
rets = r0;
|
rets = r0;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
* Hook the return address and push it in the stack of return addrs
|
* Hook the return address and push it in the stack of return addrs
|
||||||
* in current thread info.
|
* in current thread info.
|
||||||
*/
|
*/
|
||||||
void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr)
|
void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr,
|
||||||
|
unsigned long frame_pointer)
|
||||||
{
|
{
|
||||||
struct ftrace_graph_ent trace;
|
struct ftrace_graph_ent trace;
|
||||||
unsigned long return_hooker = (unsigned long)&return_to_handler;
|
unsigned long return_hooker = (unsigned long)&return_to_handler;
|
||||||
|
@ -24,7 +25,8 @@ void prepare_ftrace_return(unsigned long *parent, unsigned long self_addr)
|
||||||
if (unlikely(atomic_read(¤t->tracing_graph_pause)))
|
if (unlikely(atomic_read(¤t->tracing_graph_pause)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (ftrace_push_return_trace(*parent, self_addr, &trace.depth, 0) == -EBUSY)
|
if (ftrace_push_return_trace(*parent, self_addr, &trace.depth,
|
||||||
|
frame_pointer) == -EBUSY)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
trace.func = self_addr;
|
trace.func = self_addr;
|
||||||
|
|
|
@ -28,5 +28,5 @@ EXPORT_SYMBOL(init_task);
|
||||||
* "init_task" linker map entry.
|
* "init_task" linker map entry.
|
||||||
*/
|
*/
|
||||||
union thread_union init_thread_union
|
union thread_union init_thread_union
|
||||||
__attribute__ ((__section__(".init_task.data"))) = {
|
__init_task_data = {
|
||||||
INIT_THREAD_INFO(init_task)};
|
INIT_THREAD_INFO(init_task)};
|
||||||
|
|
|
@ -145,7 +145,7 @@ void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
struct hw_breakpoint {
|
static struct hw_breakpoint {
|
||||||
unsigned int occupied:1;
|
unsigned int occupied:1;
|
||||||
unsigned int skip:1;
|
unsigned int skip:1;
|
||||||
unsigned int enabled:1;
|
unsigned int enabled:1;
|
||||||
|
@ -155,7 +155,7 @@ struct hw_breakpoint {
|
||||||
unsigned int addr;
|
unsigned int addr;
|
||||||
} breakinfo[HW_WATCHPOINT_NUM];
|
} breakinfo[HW_WATCHPOINT_NUM];
|
||||||
|
|
||||||
int bfin_set_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
static int bfin_set_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
||||||
{
|
{
|
||||||
int breakno;
|
int breakno;
|
||||||
int bfin_type;
|
int bfin_type;
|
||||||
|
@ -202,7 +202,7 @@ int bfin_set_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
||||||
return -ENOSPC;
|
return -ENOSPC;
|
||||||
}
|
}
|
||||||
|
|
||||||
int bfin_remove_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
static int bfin_remove_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
||||||
{
|
{
|
||||||
int breakno;
|
int breakno;
|
||||||
int bfin_type;
|
int bfin_type;
|
||||||
|
@ -230,7 +230,7 @@ int bfin_remove_hw_break(unsigned long addr, int len, enum kgdb_bptype type)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void bfin_remove_all_hw_break(void)
|
static void bfin_remove_all_hw_break(void)
|
||||||
{
|
{
|
||||||
int breakno;
|
int breakno;
|
||||||
|
|
||||||
|
@ -242,7 +242,7 @@ void bfin_remove_all_hw_break(void)
|
||||||
breakinfo[breakno].type = TYPE_DATA_WATCHPOINT;
|
breakinfo[breakno].type = TYPE_DATA_WATCHPOINT;
|
||||||
}
|
}
|
||||||
|
|
||||||
void bfin_correct_hw_break(void)
|
static void bfin_correct_hw_break(void)
|
||||||
{
|
{
|
||||||
int breakno;
|
int breakno;
|
||||||
unsigned int wpiactl = 0;
|
unsigned int wpiactl = 0;
|
||||||
|
|
|
@ -0,0 +1,299 @@
|
||||||
|
/*
|
||||||
|
* Blackfin nmi_watchdog Driver
|
||||||
|
*
|
||||||
|
* Originally based on bfin_wdt.c
|
||||||
|
* Copyright 2010-2010 Analog Devices Inc.
|
||||||
|
* Graff Yang <graf.yang@analog.com>
|
||||||
|
*
|
||||||
|
* Enter bugs at http://blackfin.uclinux.org/
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/bitops.h>
|
||||||
|
#include <linux/hardirq.h>
|
||||||
|
#include <linux/sysdev.h>
|
||||||
|
#include <linux/pm.h>
|
||||||
|
#include <linux/nmi.h>
|
||||||
|
#include <linux/smp.h>
|
||||||
|
#include <linux/timer.h>
|
||||||
|
#include <asm/blackfin.h>
|
||||||
|
#include <asm/atomic.h>
|
||||||
|
#include <asm/cacheflush.h>
|
||||||
|
#include <asm/bfin_watchdog.h>
|
||||||
|
|
||||||
|
#define DRV_NAME "nmi-wdt"
|
||||||
|
|
||||||
|
#define NMI_WDT_TIMEOUT 5 /* 5 seconds */
|
||||||
|
#define NMI_CHECK_TIMEOUT (4 * HZ) /* 4 seconds in jiffies */
|
||||||
|
static int nmi_wdt_cpu = 1;
|
||||||
|
|
||||||
|
static unsigned int timeout = NMI_WDT_TIMEOUT;
|
||||||
|
static int nmi_active;
|
||||||
|
|
||||||
|
static unsigned short wdoga_ctl;
|
||||||
|
static unsigned int wdoga_cnt;
|
||||||
|
static struct corelock_slot saved_corelock;
|
||||||
|
static atomic_t nmi_touched[NR_CPUS];
|
||||||
|
static struct timer_list ntimer;
|
||||||
|
|
||||||
|
enum {
|
||||||
|
COREA_ENTER_NMI = 0,
|
||||||
|
COREA_EXIT_NMI,
|
||||||
|
COREB_EXIT_NMI,
|
||||||
|
|
||||||
|
NMI_EVENT_NR,
|
||||||
|
};
|
||||||
|
static unsigned long nmi_event __attribute__ ((__section__(".l2.bss")));
|
||||||
|
|
||||||
|
/* we are in nmi, non-atomic bit ops is safe */
|
||||||
|
static inline void set_nmi_event(int event)
|
||||||
|
{
|
||||||
|
__set_bit(event, &nmi_event);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void wait_nmi_event(int event)
|
||||||
|
{
|
||||||
|
while (!test_bit(event, &nmi_event))
|
||||||
|
barrier();
|
||||||
|
__clear_bit(event, &nmi_event);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void send_corea_nmi(void)
|
||||||
|
{
|
||||||
|
wdoga_ctl = bfin_read_WDOGA_CTL();
|
||||||
|
wdoga_cnt = bfin_read_WDOGA_CNT();
|
||||||
|
|
||||||
|
bfin_write_WDOGA_CTL(WDEN_DISABLE);
|
||||||
|
bfin_write_WDOGA_CNT(0);
|
||||||
|
bfin_write_WDOGA_CTL(WDEN_ENABLE | ICTL_NMI);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void restore_corea_nmi(void)
|
||||||
|
{
|
||||||
|
bfin_write_WDOGA_CTL(WDEN_DISABLE);
|
||||||
|
bfin_write_WDOGA_CTL(WDOG_EXPIRED | WDEN_DISABLE | ICTL_NONE);
|
||||||
|
|
||||||
|
bfin_write_WDOGA_CNT(wdoga_cnt);
|
||||||
|
bfin_write_WDOGA_CTL(wdoga_ctl);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void save_corelock(void)
|
||||||
|
{
|
||||||
|
saved_corelock = corelock;
|
||||||
|
corelock.lock = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void restore_corelock(void)
|
||||||
|
{
|
||||||
|
corelock = saved_corelock;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static inline void nmi_wdt_keepalive(void)
|
||||||
|
{
|
||||||
|
bfin_write_WDOGB_STAT(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void nmi_wdt_stop(void)
|
||||||
|
{
|
||||||
|
bfin_write_WDOGB_CTL(WDEN_DISABLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* before calling this function, you must stop the WDT */
|
||||||
|
static inline void nmi_wdt_clear(void)
|
||||||
|
{
|
||||||
|
/* clear TRO bit, disable event generation */
|
||||||
|
bfin_write_WDOGB_CTL(WDOG_EXPIRED | WDEN_DISABLE | ICTL_NONE);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void nmi_wdt_start(void)
|
||||||
|
{
|
||||||
|
bfin_write_WDOGB_CTL(WDEN_ENABLE | ICTL_NMI);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int nmi_wdt_running(void)
|
||||||
|
{
|
||||||
|
return ((bfin_read_WDOGB_CTL() & WDEN_MASK) != WDEN_DISABLE);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int nmi_wdt_set_timeout(unsigned long t)
|
||||||
|
{
|
||||||
|
u32 cnt, max_t, sclk;
|
||||||
|
int run;
|
||||||
|
|
||||||
|
sclk = get_sclk();
|
||||||
|
max_t = -1 / sclk;
|
||||||
|
cnt = t * sclk;
|
||||||
|
if (t > max_t) {
|
||||||
|
pr_warning("NMI: timeout value is too large\n");
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
run = nmi_wdt_running();
|
||||||
|
nmi_wdt_stop();
|
||||||
|
bfin_write_WDOGB_CNT(cnt);
|
||||||
|
if (run)
|
||||||
|
nmi_wdt_start();
|
||||||
|
|
||||||
|
timeout = t;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int check_nmi_wdt_touched(void)
|
||||||
|
{
|
||||||
|
unsigned int this_cpu = smp_processor_id();
|
||||||
|
unsigned int cpu;
|
||||||
|
|
||||||
|
cpumask_t mask = cpu_online_map;
|
||||||
|
|
||||||
|
if (!atomic_read(&nmi_touched[this_cpu]))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
atomic_set(&nmi_touched[this_cpu], 0);
|
||||||
|
|
||||||
|
cpu_clear(this_cpu, mask);
|
||||||
|
for_each_cpu_mask(cpu, mask) {
|
||||||
|
invalidate_dcache_range((unsigned long)(&nmi_touched[cpu]),
|
||||||
|
(unsigned long)(&nmi_touched[cpu]));
|
||||||
|
if (!atomic_read(&nmi_touched[cpu]))
|
||||||
|
return 0;
|
||||||
|
atomic_set(&nmi_touched[cpu], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void nmi_wdt_timer(unsigned long data)
|
||||||
|
{
|
||||||
|
if (check_nmi_wdt_touched())
|
||||||
|
nmi_wdt_keepalive();
|
||||||
|
|
||||||
|
mod_timer(&ntimer, jiffies + NMI_CHECK_TIMEOUT);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int __init init_nmi_wdt(void)
|
||||||
|
{
|
||||||
|
nmi_wdt_set_timeout(timeout);
|
||||||
|
nmi_wdt_start();
|
||||||
|
nmi_active = true;
|
||||||
|
|
||||||
|
init_timer(&ntimer);
|
||||||
|
ntimer.function = nmi_wdt_timer;
|
||||||
|
ntimer.expires = jiffies + NMI_CHECK_TIMEOUT;
|
||||||
|
add_timer(&ntimer);
|
||||||
|
|
||||||
|
pr_info("nmi_wdt: initialized: timeout=%d sec\n", timeout);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
device_initcall(init_nmi_wdt);
|
||||||
|
|
||||||
|
void touch_nmi_watchdog(void)
|
||||||
|
{
|
||||||
|
atomic_set(&nmi_touched[smp_processor_id()], 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Suspend/resume support */
|
||||||
|
#ifdef CONFIG_PM
|
||||||
|
static int nmi_wdt_suspend(struct sys_device *dev, pm_message_t state)
|
||||||
|
{
|
||||||
|
nmi_wdt_stop();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int nmi_wdt_resume(struct sys_device *dev)
|
||||||
|
{
|
||||||
|
if (nmi_active)
|
||||||
|
nmi_wdt_start();
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct sysdev_class nmi_sysclass = {
|
||||||
|
.name = DRV_NAME,
|
||||||
|
.resume = nmi_wdt_resume,
|
||||||
|
.suspend = nmi_wdt_suspend,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct sys_device device_nmi_wdt = {
|
||||||
|
.id = 0,
|
||||||
|
.cls = &nmi_sysclass,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init init_nmi_wdt_sysfs(void)
|
||||||
|
{
|
||||||
|
int error;
|
||||||
|
|
||||||
|
if (!nmi_active)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
error = sysdev_class_register(&nmi_sysclass);
|
||||||
|
if (!error)
|
||||||
|
error = sysdev_register(&device_nmi_wdt);
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
late_initcall(init_nmi_wdt_sysfs);
|
||||||
|
|
||||||
|
#endif /* CONFIG_PM */
|
||||||
|
|
||||||
|
|
||||||
|
asmlinkage notrace void do_nmi(struct pt_regs *fp)
|
||||||
|
{
|
||||||
|
unsigned int cpu = smp_processor_id();
|
||||||
|
nmi_enter();
|
||||||
|
|
||||||
|
cpu_pda[cpu].__nmi_count += 1;
|
||||||
|
|
||||||
|
if (cpu == nmi_wdt_cpu) {
|
||||||
|
/* CoreB goes here first */
|
||||||
|
|
||||||
|
/* reload the WDOG_STAT */
|
||||||
|
nmi_wdt_keepalive();
|
||||||
|
|
||||||
|
/* clear nmi interrupt for CoreB */
|
||||||
|
nmi_wdt_stop();
|
||||||
|
nmi_wdt_clear();
|
||||||
|
|
||||||
|
/* trigger NMI interrupt of CoreA */
|
||||||
|
send_corea_nmi();
|
||||||
|
|
||||||
|
/* waiting CoreB to enter NMI */
|
||||||
|
wait_nmi_event(COREA_ENTER_NMI);
|
||||||
|
|
||||||
|
/* recover WDOGA's settings */
|
||||||
|
restore_corea_nmi();
|
||||||
|
|
||||||
|
save_corelock();
|
||||||
|
|
||||||
|
/* corelock is save/cleared, CoreA is dummping messages */
|
||||||
|
|
||||||
|
wait_nmi_event(COREA_EXIT_NMI);
|
||||||
|
} else {
|
||||||
|
/* OK, CoreA entered NMI */
|
||||||
|
set_nmi_event(COREA_ENTER_NMI);
|
||||||
|
}
|
||||||
|
|
||||||
|
pr_emerg("\nNMI Watchdog detected LOCKUP, dump for CPU %d\n", cpu);
|
||||||
|
dump_bfin_process(fp);
|
||||||
|
dump_bfin_mem(fp);
|
||||||
|
show_regs(fp);
|
||||||
|
dump_bfin_trace_buffer();
|
||||||
|
show_stack(current, (unsigned long *)fp);
|
||||||
|
|
||||||
|
if (cpu == nmi_wdt_cpu) {
|
||||||
|
pr_emerg("This fault is not recoverable, sorry!\n");
|
||||||
|
|
||||||
|
/* CoreA dump finished, restore the corelock */
|
||||||
|
restore_corelock();
|
||||||
|
|
||||||
|
set_nmi_event(COREB_EXIT_NMI);
|
||||||
|
} else {
|
||||||
|
/* CoreB dump finished, notice the CoreA we are done */
|
||||||
|
set_nmi_event(COREA_EXIT_NMI);
|
||||||
|
|
||||||
|
/* synchronize with CoreA */
|
||||||
|
wait_nmi_event(COREB_EXIT_NMI);
|
||||||
|
}
|
||||||
|
|
||||||
|
nmi_exit();
|
||||||
|
}
|
|
@ -98,13 +98,6 @@ void cpu_idle(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fill in the fpu structure for a core dump. */
|
|
||||||
|
|
||||||
int dump_fpu(struct pt_regs *regs, elf_fpregset_t * fpregs)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This gets run with P1 containing the
|
* This gets run with P1 containing the
|
||||||
* function to call, and R1 containing
|
* function to call, and R1 containing
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
* linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
|
* linux/kernel/ptrace.c is by Ross Biro 1/23/92, edited by Linus Torvalds
|
||||||
* these modifications are Copyright 2004-2009 Analog Devices Inc.
|
* these modifications are Copyright 2004-2010 Analog Devices Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the GPL-2
|
* Licensed under the GPL-2
|
||||||
*/
|
*/
|
||||||
|
@ -9,10 +9,13 @@
|
||||||
#include <linux/sched.h>
|
#include <linux/sched.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
|
#include <linux/elf.h>
|
||||||
#include <linux/errno.h>
|
#include <linux/errno.h>
|
||||||
#include <linux/ptrace.h>
|
#include <linux/ptrace.h>
|
||||||
#include <linux/user.h>
|
#include <linux/user.h>
|
||||||
|
#include <linux/regset.h>
|
||||||
#include <linux/signal.h>
|
#include <linux/signal.h>
|
||||||
|
#include <linux/tracehook.h>
|
||||||
#include <linux/uaccess.h>
|
#include <linux/uaccess.h>
|
||||||
|
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
|
@ -25,90 +28,57 @@
|
||||||
#include <asm/cacheflush.h>
|
#include <asm/cacheflush.h>
|
||||||
#include <asm/mem_map.h>
|
#include <asm/mem_map.h>
|
||||||
|
|
||||||
#define TEXT_OFFSET 0
|
|
||||||
/*
|
/*
|
||||||
* does not yet catch signals sent when the child dies.
|
* does not yet catch signals sent when the child dies.
|
||||||
* in exit.c or in signal.c.
|
* in exit.c or in signal.c.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* determines which bits in the SYSCFG reg the user has access to. */
|
|
||||||
/* 1 = access 0 = no access */
|
|
||||||
#define SYSCFG_MASK 0x0007 /* SYSCFG reg */
|
|
||||||
/* sets the trace bits. */
|
|
||||||
#define TRACE_BITS 0x0001
|
|
||||||
|
|
||||||
/* Find the stack offset for a register, relative to thread.esp0. */
|
|
||||||
#define PT_REG(reg) ((long)&((struct pt_regs *)0)->reg)
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Get the address of the live pt_regs for the specified task.
|
|
||||||
* These are saved onto the top kernel stack when the process
|
|
||||||
* is not running.
|
|
||||||
*
|
|
||||||
* Note: if a user thread is execve'd from kernel space, the
|
|
||||||
* kernel stack will not be empty on entry to the kernel, so
|
|
||||||
* ptracing these tasks will fail.
|
|
||||||
*/
|
|
||||||
static inline struct pt_regs *get_user_regs(struct task_struct *task)
|
|
||||||
{
|
|
||||||
return (struct pt_regs *)
|
|
||||||
((unsigned long)task_stack_page(task) +
|
|
||||||
(THREAD_SIZE - sizeof(struct pt_regs)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Get all user integer registers.
|
|
||||||
*/
|
|
||||||
static inline int ptrace_getregs(struct task_struct *tsk, void __user *uregs)
|
|
||||||
{
|
|
||||||
struct pt_regs regs;
|
|
||||||
memcpy(®s, get_user_regs(tsk), sizeof(regs));
|
|
||||||
regs.usp = tsk->thread.usp;
|
|
||||||
return copy_to_user(uregs, ®s, sizeof(struct pt_regs)) ? -EFAULT : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Mapping from PT_xxx to the stack offset at which the register is
|
|
||||||
* saved. Notice that usp has no stack-slot and needs to be treated
|
|
||||||
* specially (see get_reg/put_reg below).
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Get contents of register REGNO in task TASK.
|
* Get contents of register REGNO in task TASK.
|
||||||
*/
|
*/
|
||||||
static inline long get_reg(struct task_struct *task, int regno)
|
static inline long
|
||||||
|
get_reg(struct task_struct *task, long regno, unsigned long __user *datap)
|
||||||
{
|
{
|
||||||
unsigned char *reg_ptr;
|
long tmp;
|
||||||
|
struct pt_regs *regs = task_pt_regs(task);
|
||||||
|
|
||||||
struct pt_regs *regs =
|
if (regno & 3 || regno > PT_LAST_PSEUDO || regno < 0)
|
||||||
(struct pt_regs *)((unsigned long)task_stack_page(task) +
|
return -EIO;
|
||||||
(THREAD_SIZE - sizeof(struct pt_regs)));
|
|
||||||
reg_ptr = (char *)regs;
|
|
||||||
|
|
||||||
switch (regno) {
|
switch (regno) {
|
||||||
|
case PT_TEXT_ADDR:
|
||||||
|
tmp = task->mm->start_code;
|
||||||
|
break;
|
||||||
|
case PT_TEXT_END_ADDR:
|
||||||
|
tmp = task->mm->end_code;
|
||||||
|
break;
|
||||||
|
case PT_DATA_ADDR:
|
||||||
|
tmp = task->mm->start_data;
|
||||||
|
break;
|
||||||
case PT_USP:
|
case PT_USP:
|
||||||
return task->thread.usp;
|
tmp = task->thread.usp;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (regno <= 216)
|
if (regno < sizeof(*regs)) {
|
||||||
return *(long *)(reg_ptr + regno);
|
void *reg_ptr = regs;
|
||||||
|
tmp = *(long *)(reg_ptr + regno);
|
||||||
|
} else
|
||||||
|
return -EIO;
|
||||||
}
|
}
|
||||||
/* slight mystery ... never seems to come here but kernel misbehaves without this code! */
|
|
||||||
|
|
||||||
printk(KERN_WARNING "Request to get for unknown register %d\n", regno);
|
return put_user(tmp, datap);
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Write contents of register REGNO in task TASK.
|
* Write contents of register REGNO in task TASK.
|
||||||
*/
|
*/
|
||||||
static inline int
|
static inline int
|
||||||
put_reg(struct task_struct *task, int regno, unsigned long data)
|
put_reg(struct task_struct *task, long regno, unsigned long data)
|
||||||
{
|
{
|
||||||
char *reg_ptr;
|
struct pt_regs *regs = task_pt_regs(task);
|
||||||
|
|
||||||
struct pt_regs *regs =
|
if (regno & 3 || regno > PT_LAST_PSEUDO || regno < 0)
|
||||||
(struct pt_regs *)((unsigned long)task_stack_page(task) +
|
return -EIO;
|
||||||
(THREAD_SIZE - sizeof(struct pt_regs)));
|
|
||||||
reg_ptr = (char *)regs;
|
|
||||||
|
|
||||||
switch (regno) {
|
switch (regno) {
|
||||||
case PT_PC:
|
case PT_PC:
|
||||||
|
@ -125,10 +95,18 @@ put_reg(struct task_struct *task, int regno, unsigned long data)
|
||||||
regs->usp = data;
|
regs->usp = data;
|
||||||
task->thread.usp = data;
|
task->thread.usp = data;
|
||||||
break;
|
break;
|
||||||
|
case PT_SYSCFG: /* don't let userspace screw with this */
|
||||||
|
if ((data & ~1) != 0x6)
|
||||||
|
pr_warning("ptrace: ignore syscfg write of %#lx\n", data);
|
||||||
|
break; /* regs->syscfg = data; break; */
|
||||||
default:
|
default:
|
||||||
if (regno <= 216)
|
if (regno < sizeof(*regs)) {
|
||||||
*(long *)(reg_ptr + regno) = data;
|
void *reg_offset = regs;
|
||||||
|
*(long *)(reg_offset + regno) = data;
|
||||||
|
}
|
||||||
|
/* Ignore writes to pseudo registers */
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -160,24 +138,98 @@ static inline int is_user_addr_valid(struct task_struct *child,
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ptrace_enable(struct task_struct *child)
|
/*
|
||||||
|
* retrieve the contents of Blackfin userspace general registers
|
||||||
|
*/
|
||||||
|
static int genregs_get(struct task_struct *target,
|
||||||
|
const struct user_regset *regset,
|
||||||
|
unsigned int pos, unsigned int count,
|
||||||
|
void *kbuf, void __user *ubuf)
|
||||||
{
|
{
|
||||||
unsigned long tmp;
|
struct pt_regs *regs = task_pt_regs(target);
|
||||||
tmp = get_reg(child, PT_SYSCFG) | (TRACE_BITS);
|
int ret;
|
||||||
put_reg(child, PT_SYSCFG, tmp);
|
|
||||||
|
/* This sucks ... */
|
||||||
|
regs->usp = target->thread.usp;
|
||||||
|
|
||||||
|
ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf,
|
||||||
|
regs, 0, sizeof(*regs));
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf,
|
||||||
|
sizeof(*regs), -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Called by kernel/ptrace.c when detaching..
|
* update the contents of the Blackfin userspace general registers
|
||||||
*
|
|
||||||
* Make sure the single step bit is not set.
|
|
||||||
*/
|
*/
|
||||||
void ptrace_disable(struct task_struct *child)
|
static int genregs_set(struct task_struct *target,
|
||||||
|
const struct user_regset *regset,
|
||||||
|
unsigned int pos, unsigned int count,
|
||||||
|
const void *kbuf, const void __user *ubuf)
|
||||||
{
|
{
|
||||||
unsigned long tmp;
|
struct pt_regs *regs = task_pt_regs(target);
|
||||||
/* make sure the single step bit is not set. */
|
int ret;
|
||||||
tmp = get_reg(child, PT_SYSCFG) & ~TRACE_BITS;
|
|
||||||
put_reg(child, PT_SYSCFG, tmp);
|
/* Don't let people set SYSCFG (it's at the end of pt_regs) */
|
||||||
|
ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf,
|
||||||
|
regs, 0, PT_SYSCFG);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
/* This sucks ... */
|
||||||
|
target->thread.usp = regs->usp;
|
||||||
|
/* regs->retx = regs->pc; */
|
||||||
|
|
||||||
|
return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf,
|
||||||
|
PT_SYSCFG, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Define the register sets available on the Blackfin under Linux
|
||||||
|
*/
|
||||||
|
enum bfin_regset {
|
||||||
|
REGSET_GENERAL,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct user_regset bfin_regsets[] = {
|
||||||
|
[REGSET_GENERAL] = {
|
||||||
|
.core_note_type = NT_PRSTATUS,
|
||||||
|
.n = sizeof(struct pt_regs) / sizeof(long),
|
||||||
|
.size = sizeof(long),
|
||||||
|
.align = sizeof(long),
|
||||||
|
.get = genregs_get,
|
||||||
|
.set = genregs_set,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct user_regset_view user_bfin_native_view = {
|
||||||
|
.name = "Blackfin",
|
||||||
|
.e_machine = EM_BLACKFIN,
|
||||||
|
.regsets = bfin_regsets,
|
||||||
|
.n = ARRAY_SIZE(bfin_regsets),
|
||||||
|
};
|
||||||
|
|
||||||
|
const struct user_regset_view *task_user_regset_view(struct task_struct *task)
|
||||||
|
{
|
||||||
|
return &user_bfin_native_view;
|
||||||
|
}
|
||||||
|
|
||||||
|
void user_enable_single_step(struct task_struct *child)
|
||||||
|
{
|
||||||
|
struct pt_regs *regs = task_pt_regs(child);
|
||||||
|
regs->syscfg |= SYSCFG_SSSTEP;
|
||||||
|
|
||||||
|
set_tsk_thread_flag(child, TIF_SINGLESTEP);
|
||||||
|
}
|
||||||
|
|
||||||
|
void user_disable_single_step(struct task_struct *child)
|
||||||
|
{
|
||||||
|
struct pt_regs *regs = task_pt_regs(child);
|
||||||
|
regs->syscfg &= ~SYSCFG_SSSTEP;
|
||||||
|
|
||||||
|
clear_tsk_thread_flag(child, TIF_SINGLESTEP);
|
||||||
}
|
}
|
||||||
|
|
||||||
long arch_ptrace(struct task_struct *child, long request, long addr, long data)
|
long arch_ptrace(struct task_struct *child, long request, long addr, long data)
|
||||||
|
@ -240,40 +292,6 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* read the word at location addr in the USER area. */
|
|
||||||
case PTRACE_PEEKUSR:
|
|
||||||
{
|
|
||||||
unsigned long tmp;
|
|
||||||
ret = -EIO;
|
|
||||||
tmp = 0;
|
|
||||||
if ((addr & 3) || (addr > (sizeof(struct pt_regs) + 16))) {
|
|
||||||
printk(KERN_WARNING "ptrace error : PEEKUSR : temporarily returning "
|
|
||||||
"0 - %x sizeof(pt_regs) is %lx\n",
|
|
||||||
(int)addr, sizeof(struct pt_regs));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (addr == sizeof(struct pt_regs)) {
|
|
||||||
/* PT_TEXT_ADDR */
|
|
||||||
tmp = child->mm->start_code + TEXT_OFFSET;
|
|
||||||
} else if (addr == (sizeof(struct pt_regs) + 4)) {
|
|
||||||
/* PT_TEXT_END_ADDR */
|
|
||||||
tmp = child->mm->end_code;
|
|
||||||
} else if (addr == (sizeof(struct pt_regs) + 8)) {
|
|
||||||
/* PT_DATA_ADDR */
|
|
||||||
tmp = child->mm->start_data;
|
|
||||||
#ifdef CONFIG_BINFMT_ELF_FDPIC
|
|
||||||
} else if (addr == (sizeof(struct pt_regs) + 12)) {
|
|
||||||
goto case_PTRACE_GETFDPIC_EXEC;
|
|
||||||
} else if (addr == (sizeof(struct pt_regs) + 16)) {
|
|
||||||
goto case_PTRACE_GETFDPIC_INTERP;
|
|
||||||
#endif
|
|
||||||
} else {
|
|
||||||
tmp = get_reg(child, addr);
|
|
||||||
}
|
|
||||||
ret = put_user(tmp, datap);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef CONFIG_BINFMT_ELF_FDPIC
|
#ifdef CONFIG_BINFMT_ELF_FDPIC
|
||||||
case PTRACE_GETFDPIC: {
|
case PTRACE_GETFDPIC: {
|
||||||
unsigned long tmp = 0;
|
unsigned long tmp = 0;
|
||||||
|
@ -336,78 +354,36 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
|
case PTRACE_PEEKUSR:
|
||||||
ret = -EIO;
|
switch (addr) {
|
||||||
if ((addr & 3) || (addr > (sizeof(struct pt_regs) + 16))) {
|
#ifdef CONFIG_BINFMT_ELF_FDPIC /* backwards compat */
|
||||||
printk(KERN_WARNING "ptrace error : POKEUSR: temporarily returning 0\n");
|
case PT_FDPIC_EXEC: goto case_PTRACE_GETFDPIC_EXEC;
|
||||||
break;
|
case PT_FDPIC_INTERP: goto case_PTRACE_GETFDPIC_INTERP;
|
||||||
|
#endif
|
||||||
|
default:
|
||||||
|
ret = get_reg(child, addr, datap);
|
||||||
}
|
}
|
||||||
|
pr_debug("ptrace: PEEKUSR reg %li with %#lx = %i\n", addr, data, ret);
|
||||||
|
break;
|
||||||
|
|
||||||
if (addr >= (sizeof(struct pt_regs))) {
|
case PTRACE_POKEUSR:
|
||||||
ret = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (addr == PT_SYSCFG) {
|
|
||||||
data &= SYSCFG_MASK;
|
|
||||||
data |= get_reg(child, PT_SYSCFG);
|
|
||||||
}
|
|
||||||
ret = put_reg(child, addr, data);
|
ret = put_reg(child, addr, data);
|
||||||
break;
|
pr_debug("ptrace: POKEUSR reg %li with %li = %i\n", addr, data, ret);
|
||||||
|
|
||||||
case PTRACE_SYSCALL: /* continue and stop at next (return from) syscall */
|
|
||||||
case PTRACE_CONT: /* restart after signal. */
|
|
||||||
pr_debug("ptrace: syscall/cont\n");
|
|
||||||
|
|
||||||
ret = -EIO;
|
|
||||||
if (!valid_signal(data))
|
|
||||||
break;
|
|
||||||
if (request == PTRACE_SYSCALL)
|
|
||||||
set_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
|
|
||||||
else
|
|
||||||
clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
|
|
||||||
child->exit_code = data;
|
|
||||||
ptrace_disable(child);
|
|
||||||
pr_debug("ptrace: before wake_up_process\n");
|
|
||||||
wake_up_process(child);
|
|
||||||
ret = 0;
|
|
||||||
break;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* make the child exit. Best I can do is send it a sigkill.
|
|
||||||
* perhaps it should be put in the status that it wants to
|
|
||||||
* exit.
|
|
||||||
*/
|
|
||||||
case PTRACE_KILL:
|
|
||||||
ret = 0;
|
|
||||||
if (child->exit_state == EXIT_ZOMBIE) /* already dead */
|
|
||||||
break;
|
|
||||||
child->exit_code = SIGKILL;
|
|
||||||
ptrace_disable(child);
|
|
||||||
wake_up_process(child);
|
|
||||||
break;
|
|
||||||
|
|
||||||
case PTRACE_SINGLESTEP: /* set the trap flag. */
|
|
||||||
pr_debug("ptrace: single step\n");
|
|
||||||
ret = -EIO;
|
|
||||||
if (!valid_signal(data))
|
|
||||||
break;
|
|
||||||
clear_tsk_thread_flag(child, TIF_SYSCALL_TRACE);
|
|
||||||
ptrace_enable(child);
|
|
||||||
child->exit_code = data;
|
|
||||||
wake_up_process(child);
|
|
||||||
ret = 0;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PTRACE_GETREGS:
|
case PTRACE_GETREGS:
|
||||||
/* Get all gp regs from the child. */
|
pr_debug("ptrace: PTRACE_GETREGS\n");
|
||||||
ret = ptrace_getregs(child, datap);
|
return copy_regset_to_user(child, &user_bfin_native_view,
|
||||||
break;
|
REGSET_GENERAL,
|
||||||
|
0, sizeof(struct pt_regs),
|
||||||
|
(void __user *)data);
|
||||||
|
|
||||||
case PTRACE_SETREGS:
|
case PTRACE_SETREGS:
|
||||||
printk(KERN_WARNING "ptrace: SETREGS: **** NOT IMPLEMENTED ***\n");
|
pr_debug("ptrace: PTRACE_SETREGS\n");
|
||||||
/* Set all gp regs in the child. */
|
return copy_regset_from_user(child, &user_bfin_native_view,
|
||||||
ret = 0;
|
REGSET_GENERAL,
|
||||||
break;
|
0, sizeof(struct pt_regs),
|
||||||
|
(const void __user *)data);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
ret = ptrace_request(child, request, addr, data);
|
ret = ptrace_request(child, request, addr, data);
|
||||||
|
@ -417,27 +393,21 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
asmlinkage void syscall_trace(void)
|
asmlinkage int syscall_trace_enter(struct pt_regs *regs)
|
||||||
{
|
{
|
||||||
if (!test_thread_flag(TIF_SYSCALL_TRACE))
|
int ret = 0;
|
||||||
return;
|
|
||||||
|
|
||||||
if (!(current->ptrace & PT_PTRACED))
|
if (test_thread_flag(TIF_SYSCALL_TRACE))
|
||||||
return;
|
ret = tracehook_report_syscall_entry(regs);
|
||||||
|
|
||||||
/* the 0x80 provides a way for the tracing parent to distinguish
|
return ret;
|
||||||
* between a syscall stop and SIGTRAP delivery
|
}
|
||||||
*/
|
|
||||||
ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD)
|
asmlinkage void syscall_trace_leave(struct pt_regs *regs)
|
||||||
? 0x80 : 0));
|
{
|
||||||
|
int step;
|
||||||
/*
|
|
||||||
* this isn't the same as continuing with a signal, but it will do
|
step = test_thread_flag(TIF_SINGLESTEP);
|
||||||
* for normal use. strace only continues with a signal if the
|
if (step || test_thread_flag(TIF_SYSCALL_TRACE))
|
||||||
* stopping signal is not SIGTRAP. -brl
|
tracehook_report_syscall_exit(regs, step);
|
||||||
*/
|
|
||||||
if (current->exit_code) {
|
|
||||||
send_sig(current->exit_code, current, 1);
|
|
||||||
current->exit_code = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -220,6 +220,16 @@ void __init bfin_relocate_l1_mem(void)
|
||||||
memcpy(_stext_l2, _l2_lma, l2_len);
|
memcpy(_stext_l2, _l2_lma, l2_len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
void __init bfin_relocate_xip_data(void)
|
||||||
|
{
|
||||||
|
early_shadow_stamp();
|
||||||
|
|
||||||
|
memcpy(_sdata, _data_lma, (unsigned long)_data_len - THREAD_SIZE + sizeof(struct thread_info));
|
||||||
|
memcpy(_sinitdata, _init_data_lma, (unsigned long)_init_data_len);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* add_memory_region to memmap */
|
/* add_memory_region to memmap */
|
||||||
static void __init add_memory_region(unsigned long long start,
|
static void __init add_memory_region(unsigned long long start,
|
||||||
unsigned long long size, int type)
|
unsigned long long size, int type)
|
||||||
|
@ -504,7 +514,7 @@ static __init void memory_setup(void)
|
||||||
#endif
|
#endif
|
||||||
unsigned long max_mem;
|
unsigned long max_mem;
|
||||||
|
|
||||||
_rambase = (unsigned long)_stext;
|
_rambase = CONFIG_BOOT_LOAD;
|
||||||
_ramstart = (unsigned long)_end;
|
_ramstart = (unsigned long)_end;
|
||||||
|
|
||||||
if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
|
if (DMA_UNCACHED_REGION > (_ramend - _ramstart)) {
|
||||||
|
@ -597,7 +607,12 @@ static __init void memory_setup(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_MPU
|
#ifdef CONFIG_MPU
|
||||||
|
#if defined(CONFIG_ROMFS_ON_MTD) && defined(CONFIG_MTD_ROM)
|
||||||
|
page_mask_nelts = (((_ramend + ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE -
|
||||||
|
ASYNC_BANK0_BASE) >> PAGE_SHIFT) + 31) / 32;
|
||||||
|
#else
|
||||||
page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
|
page_mask_nelts = ((_ramend >> PAGE_SHIFT) + 31) / 32;
|
||||||
|
#endif
|
||||||
page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
|
page_mask_order = get_order(3 * page_mask_nelts * sizeof(long));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -630,7 +645,7 @@ static __init void memory_setup(void)
|
||||||
__bss_start, __bss_stop,
|
__bss_start, __bss_stop,
|
||||||
_sdata, _edata,
|
_sdata, _edata,
|
||||||
(void *)&init_thread_union,
|
(void *)&init_thread_union,
|
||||||
(void *)((int)(&init_thread_union) + 0x2000),
|
(void *)((int)(&init_thread_union) + THREAD_SIZE),
|
||||||
__init_begin, __init_end,
|
__init_begin, __init_end,
|
||||||
(void *)_ramstart, (void *)memory_end
|
(void *)_ramstart, (void *)memory_end
|
||||||
#ifdef CONFIG_MTD_UCLINUX
|
#ifdef CONFIG_MTD_UCLINUX
|
||||||
|
@ -792,10 +807,17 @@ static inline int __init get_mem_size(void)
|
||||||
BUG();
|
BUG();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
__attribute__((weak))
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
void __init setup_arch(char **cmdline_p)
|
void __init setup_arch(char **cmdline_p)
|
||||||
{
|
{
|
||||||
unsigned long sclk, cclk;
|
unsigned long sclk, cclk;
|
||||||
|
|
||||||
|
native_machine_early_platform_add_devices();
|
||||||
|
|
||||||
enable_shadow_console();
|
enable_shadow_console();
|
||||||
|
|
||||||
/* Check to make sure we are running on the right processor */
|
/* Check to make sure we are running on the right processor */
|
||||||
|
@ -1217,10 +1239,10 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
||||||
dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
|
dsup_banks, BFIN_DSUBBANKS, BFIN_DWAYS,
|
||||||
BFIN_DLINES);
|
BFIN_DLINES);
|
||||||
#ifdef __ARCH_SYNC_CORE_DCACHE
|
#ifdef __ARCH_SYNC_CORE_DCACHE
|
||||||
seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", cpudata->dcache_invld_count);
|
seq_printf(m, "SMP Dcache Flushes\t: %lu\n\n", dcache_invld_count[cpu_num]);
|
||||||
#endif
|
#endif
|
||||||
#ifdef __ARCH_SYNC_CORE_ICACHE
|
#ifdef __ARCH_SYNC_CORE_ICACHE
|
||||||
seq_printf(m, "SMP Icache Flushes\t: %lu\n\n", cpudata->icache_invld_count);
|
seq_printf(m, "SMP Icache Flushes\t: %lu\n\n", icache_invld_count[cpu_num]);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (cpu_num != num_possible_cpus() - 1)
|
if (cpu_num != num_possible_cpus() - 1)
|
||||||
|
@ -1249,8 +1271,8 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
||||||
seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
|
seq_printf(m, "board memory\t: %ld kB (0x%p -> 0x%p)\n",
|
||||||
physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
|
physical_mem_end >> 10, (void *)0, (void *)physical_mem_end);
|
||||||
seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
|
seq_printf(m, "kernel memory\t: %d kB (0x%p -> 0x%p)\n",
|
||||||
((int)memory_end - (int)_stext) >> 10,
|
((int)memory_end - (int)_rambase) >> 10,
|
||||||
_stext,
|
(void *)_rambase,
|
||||||
(void *)memory_end);
|
(void *)memory_end);
|
||||||
seq_printf(m, "\n");
|
seq_printf(m, "\n");
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2004-2009 Analog Devices Inc.
|
* Copyright 2004-2010 Analog Devices Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the GPL-2 or later
|
* Licensed under the GPL-2 or later
|
||||||
*/
|
*/
|
||||||
|
@ -17,6 +17,7 @@
|
||||||
#include <asm/cacheflush.h>
|
#include <asm/cacheflush.h>
|
||||||
#include <asm/ucontext.h>
|
#include <asm/ucontext.h>
|
||||||
#include <asm/fixed_code.h>
|
#include <asm/fixed_code.h>
|
||||||
|
#include <asm/syscall.h>
|
||||||
|
|
||||||
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
|
#define _BLOCKABLE (~(sigmask(SIGKILL) | sigmask(SIGSTOP)))
|
||||||
|
|
||||||
|
@ -50,6 +51,9 @@ rt_restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc, int *p
|
||||||
unsigned long usp = 0;
|
unsigned long usp = 0;
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
|
/* Always make any pending restarted system calls return -EINTR */
|
||||||
|
current_thread_info()->restart_block.fn = do_no_restart_syscall;
|
||||||
|
|
||||||
#define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
|
#define RESTORE(x) err |= __get_user(regs->x, &sc->sc_##x)
|
||||||
|
|
||||||
/* restore passed registers */
|
/* restore passed registers */
|
||||||
|
@ -206,16 +210,6 @@ setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t * info,
|
||||||
regs->r1 = (unsigned long)(&frame->info);
|
regs->r1 = (unsigned long)(&frame->info);
|
||||||
regs->r2 = (unsigned long)(&frame->uc);
|
regs->r2 = (unsigned long)(&frame->uc);
|
||||||
|
|
||||||
/*
|
|
||||||
* Clear the trace flag when entering the signal handler, but
|
|
||||||
* notify any tracer that was single-stepping it. The tracer
|
|
||||||
* may want to single-step inside the handler too.
|
|
||||||
*/
|
|
||||||
if (regs->syscfg & TRACE_BITS) {
|
|
||||||
regs->syscfg &= ~TRACE_BITS;
|
|
||||||
ptrace_notify(SIGTRAP);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
give_sigsegv:
|
give_sigsegv:
|
||||||
|
@ -247,6 +241,11 @@ handle_restart(struct pt_regs *regs, struct k_sigaction *ka, int has_handler)
|
||||||
regs->r0 = regs->orig_r0;
|
regs->r0 = regs->orig_r0;
|
||||||
regs->pc -= 2;
|
regs->pc -= 2;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case -ERESTART_RESTARTBLOCK:
|
||||||
|
regs->p0 = __NR_restart_syscall;
|
||||||
|
regs->pc -= 2;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,6 +314,9 @@ asmlinkage void do_signal(struct pt_regs *regs)
|
||||||
* clear the TIF_RESTORE_SIGMASK flag */
|
* clear the TIF_RESTORE_SIGMASK flag */
|
||||||
if (test_thread_flag(TIF_RESTORE_SIGMASK))
|
if (test_thread_flag(TIF_RESTORE_SIGMASK))
|
||||||
clear_thread_flag(TIF_RESTORE_SIGMASK);
|
clear_thread_flag(TIF_RESTORE_SIGMASK);
|
||||||
|
|
||||||
|
tracehook_signal_handler(signr, &info, &ka, regs,
|
||||||
|
test_thread_flag(TIF_SINGLESTEP));
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#include <asm/blackfin.h>
|
#include <asm/blackfin.h>
|
||||||
#include <asm/time.h>
|
#include <asm/time.h>
|
||||||
#include <asm/gptimers.h>
|
#include <asm/gptimers.h>
|
||||||
|
#include <asm/nmi.h>
|
||||||
|
|
||||||
/* Accelerators for sched_clock()
|
/* Accelerators for sched_clock()
|
||||||
* convert from cycles(64bits) => nanoseconds (64bits)
|
* convert from cycles(64bits) => nanoseconds (64bits)
|
||||||
|
@ -50,7 +51,11 @@
|
||||||
|
|
||||||
static notrace cycle_t bfin_read_cycles(struct clocksource *cs)
|
static notrace cycle_t bfin_read_cycles(struct clocksource *cs)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_CPU_FREQ
|
||||||
return __bfin_cycles_off + (get_cycles() << __bfin_cycles_mod);
|
return __bfin_cycles_off + (get_cycles() << __bfin_cycles_mod);
|
||||||
|
#else
|
||||||
|
return get_cycles();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct clocksource bfin_cs_cycles = {
|
static struct clocksource bfin_cs_cycles = {
|
||||||
|
@ -132,7 +137,6 @@ static int __init bfin_cs_gptimer0_init(void)
|
||||||
# define bfin_cs_gptimer0_init()
|
# define bfin_cs_gptimer0_init()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#if defined(CONFIG_GPTMR0_CLOCKSOURCE) || defined(CONFIG_CYCLES_CLOCKSOURCE)
|
#if defined(CONFIG_GPTMR0_CLOCKSOURCE) || defined(CONFIG_CYCLES_CLOCKSOURCE)
|
||||||
/* prefer to use cycles since it has higher rating */
|
/* prefer to use cycles since it has higher rating */
|
||||||
notrace unsigned long long sched_clock(void)
|
notrace unsigned long long sched_clock(void)
|
||||||
|
@ -145,47 +149,8 @@ notrace unsigned long long sched_clock(void)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_CORE_TIMER_IRQ_L1
|
|
||||||
__attribute__((l1_text))
|
|
||||||
#endif
|
|
||||||
irqreturn_t timer_interrupt(int irq, void *dev_id);
|
|
||||||
|
|
||||||
static int bfin_timer_set_next_event(unsigned long, \
|
|
||||||
struct clock_event_device *);
|
|
||||||
|
|
||||||
static void bfin_timer_set_mode(enum clock_event_mode, \
|
|
||||||
struct clock_event_device *);
|
|
||||||
|
|
||||||
static struct clock_event_device clockevent_bfin = {
|
|
||||||
#if defined(CONFIG_TICKSOURCE_GPTMR0)
|
#if defined(CONFIG_TICKSOURCE_GPTMR0)
|
||||||
.name = "bfin_gptimer0",
|
static int bfin_gptmr0_set_next_event(unsigned long cycles,
|
||||||
.rating = 300,
|
|
||||||
.irq = IRQ_TIMER0,
|
|
||||||
#else
|
|
||||||
.name = "bfin_core_timer",
|
|
||||||
.rating = 350,
|
|
||||||
.irq = IRQ_CORETMR,
|
|
||||||
#endif
|
|
||||||
.shift = 32,
|
|
||||||
.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
|
|
||||||
.set_next_event = bfin_timer_set_next_event,
|
|
||||||
.set_mode = bfin_timer_set_mode,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct irqaction bfin_timer_irq = {
|
|
||||||
#if defined(CONFIG_TICKSOURCE_GPTMR0)
|
|
||||||
.name = "Blackfin GPTimer0",
|
|
||||||
#else
|
|
||||||
.name = "Blackfin CoreTimer",
|
|
||||||
#endif
|
|
||||||
.flags = IRQF_DISABLED | IRQF_TIMER | \
|
|
||||||
IRQF_IRQPOLL | IRQF_PERCPU,
|
|
||||||
.handler = timer_interrupt,
|
|
||||||
.dev_id = &clockevent_bfin,
|
|
||||||
};
|
|
||||||
|
|
||||||
#if defined(CONFIG_TICKSOURCE_GPTMR0)
|
|
||||||
static int bfin_timer_set_next_event(unsigned long cycles,
|
|
||||||
struct clock_event_device *evt)
|
struct clock_event_device *evt)
|
||||||
{
|
{
|
||||||
disable_gptimers(TIMER0bit);
|
disable_gptimers(TIMER0bit);
|
||||||
|
@ -196,7 +161,7 @@ static int bfin_timer_set_next_event(unsigned long cycles,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfin_timer_set_mode(enum clock_event_mode mode,
|
static void bfin_gptmr0_set_mode(enum clock_event_mode mode,
|
||||||
struct clock_event_device *evt)
|
struct clock_event_device *evt)
|
||||||
{
|
{
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
|
@ -224,25 +189,65 @@ static void bfin_timer_set_mode(enum clock_event_mode mode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfin_timer_ack(void)
|
static void bfin_gptmr0_ack(void)
|
||||||
{
|
{
|
||||||
set_gptimer_status(TIMER_GROUP1, TIMER_STATUS_TIMIL0);
|
set_gptimer_status(TIMER_GROUP1, TIMER_STATUS_TIMIL0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init bfin_timer_init(void)
|
static void __init bfin_gptmr0_init(void)
|
||||||
{
|
{
|
||||||
disable_gptimers(TIMER0bit);
|
disable_gptimers(TIMER0bit);
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long __init bfin_clockevent_check(void)
|
#ifdef CONFIG_CORE_TIMER_IRQ_L1
|
||||||
|
__attribute__((l1_text))
|
||||||
|
#endif
|
||||||
|
irqreturn_t bfin_gptmr0_interrupt(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
setup_irq(IRQ_TIMER0, &bfin_timer_irq);
|
struct clock_event_device *evt = dev_id;
|
||||||
return get_sclk();
|
smp_mb();
|
||||||
|
evt->event_handler(evt);
|
||||||
|
bfin_gptmr0_ack();
|
||||||
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* CONFIG_TICKSOURCE_CORETMR */
|
static struct irqaction gptmr0_irq = {
|
||||||
|
.name = "Blackfin GPTimer0",
|
||||||
|
.flags = IRQF_DISABLED | IRQF_TIMER | \
|
||||||
|
IRQF_IRQPOLL | IRQF_PERCPU,
|
||||||
|
.handler = bfin_gptmr0_interrupt,
|
||||||
|
};
|
||||||
|
|
||||||
static int bfin_timer_set_next_event(unsigned long cycles,
|
static struct clock_event_device clockevent_gptmr0 = {
|
||||||
|
.name = "bfin_gptimer0",
|
||||||
|
.rating = 300,
|
||||||
|
.irq = IRQ_TIMER0,
|
||||||
|
.shift = 32,
|
||||||
|
.features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT,
|
||||||
|
.set_next_event = bfin_gptmr0_set_next_event,
|
||||||
|
.set_mode = bfin_gptmr0_set_mode,
|
||||||
|
};
|
||||||
|
|
||||||
|
static void __init bfin_gptmr0_clockevent_init(struct clock_event_device *evt)
|
||||||
|
{
|
||||||
|
unsigned long clock_tick;
|
||||||
|
|
||||||
|
clock_tick = get_sclk();
|
||||||
|
evt->mult = div_sc(clock_tick, NSEC_PER_SEC, evt->shift);
|
||||||
|
evt->max_delta_ns = clockevent_delta2ns(-1, evt);
|
||||||
|
evt->min_delta_ns = clockevent_delta2ns(100, evt);
|
||||||
|
|
||||||
|
evt->cpumask = cpumask_of(0);
|
||||||
|
|
||||||
|
clockevents_register_device(evt);
|
||||||
|
}
|
||||||
|
#endif /* CONFIG_TICKSOURCE_GPTMR0 */
|
||||||
|
|
||||||
|
#if defined(CONFIG_TICKSOURCE_CORETMR)
|
||||||
|
/* per-cpu local core timer */
|
||||||
|
static DEFINE_PER_CPU(struct clock_event_device, coretmr_events);
|
||||||
|
|
||||||
|
static int bfin_coretmr_set_next_event(unsigned long cycles,
|
||||||
struct clock_event_device *evt)
|
struct clock_event_device *evt)
|
||||||
{
|
{
|
||||||
bfin_write_TCNTL(TMPWR);
|
bfin_write_TCNTL(TMPWR);
|
||||||
|
@ -253,7 +258,7 @@ static int bfin_timer_set_next_event(unsigned long cycles,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfin_timer_set_mode(enum clock_event_mode mode,
|
static void bfin_coretmr_set_mode(enum clock_event_mode mode,
|
||||||
struct clock_event_device *evt)
|
struct clock_event_device *evt)
|
||||||
{
|
{
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
|
@ -285,19 +290,13 @@ static void bfin_timer_set_mode(enum clock_event_mode mode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bfin_timer_ack(void)
|
void bfin_coretmr_init(void)
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
static void __init bfin_timer_init(void)
|
|
||||||
{
|
{
|
||||||
/* power up the timer, but don't enable it just yet */
|
/* power up the timer, but don't enable it just yet */
|
||||||
bfin_write_TCNTL(TMPWR);
|
bfin_write_TCNTL(TMPWR);
|
||||||
CSYNC();
|
CSYNC();
|
||||||
|
|
||||||
/*
|
/* the TSCALE prescaler counter. */
|
||||||
* the TSCALE prescaler counter.
|
|
||||||
*/
|
|
||||||
bfin_write_TSCALE(TIME_SCALE - 1);
|
bfin_write_TSCALE(TIME_SCALE - 1);
|
||||||
bfin_write_TPERIOD(0);
|
bfin_write_TPERIOD(0);
|
||||||
bfin_write_TCOUNT(0);
|
bfin_write_TCOUNT(0);
|
||||||
|
@ -305,48 +304,54 @@ static void __init bfin_timer_init(void)
|
||||||
CSYNC();
|
CSYNC();
|
||||||
}
|
}
|
||||||
|
|
||||||
static unsigned long __init bfin_clockevent_check(void)
|
#ifdef CONFIG_CORE_TIMER_IRQ_L1
|
||||||
|
__attribute__((l1_text))
|
||||||
|
#endif
|
||||||
|
irqreturn_t bfin_coretmr_interrupt(int irq, void *dev_id)
|
||||||
{
|
{
|
||||||
setup_irq(IRQ_CORETMR, &bfin_timer_irq);
|
int cpu = smp_processor_id();
|
||||||
return get_cclk() / TIME_SCALE;
|
struct clock_event_device *evt = &per_cpu(coretmr_events, cpu);
|
||||||
}
|
|
||||||
|
|
||||||
void __init setup_core_timer(void)
|
|
||||||
{
|
|
||||||
bfin_timer_init();
|
|
||||||
bfin_timer_set_mode(CLOCK_EVT_MODE_PERIODIC, NULL);
|
|
||||||
}
|
|
||||||
#endif /* CONFIG_TICKSOURCE_GPTMR0 */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* timer_interrupt() needs to keep up the real-time clock,
|
|
||||||
* as well as call the "do_timer()" routine every clocktick
|
|
||||||
*/
|
|
||||||
irqreturn_t timer_interrupt(int irq, void *dev_id)
|
|
||||||
{
|
|
||||||
struct clock_event_device *evt = dev_id;
|
|
||||||
smp_mb();
|
smp_mb();
|
||||||
evt->event_handler(evt);
|
evt->event_handler(evt);
|
||||||
bfin_timer_ack();
|
|
||||||
|
touch_nmi_watchdog();
|
||||||
|
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __init bfin_clockevent_init(void)
|
static struct irqaction coretmr_irq = {
|
||||||
|
.name = "Blackfin CoreTimer",
|
||||||
|
.flags = IRQF_DISABLED | IRQF_TIMER | \
|
||||||
|
IRQF_IRQPOLL | IRQF_PERCPU,
|
||||||
|
.handler = bfin_coretmr_interrupt,
|
||||||
|
};
|
||||||
|
|
||||||
|
void bfin_coretmr_clockevent_init(void)
|
||||||
{
|
{
|
||||||
unsigned long timer_clk;
|
unsigned long clock_tick;
|
||||||
|
unsigned int cpu = smp_processor_id();
|
||||||
|
struct clock_event_device *evt = &per_cpu(coretmr_events, cpu);
|
||||||
|
|
||||||
timer_clk = bfin_clockevent_check();
|
evt->name = "bfin_core_timer";
|
||||||
|
evt->rating = 350;
|
||||||
|
evt->irq = -1;
|
||||||
|
evt->shift = 32;
|
||||||
|
evt->features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT;
|
||||||
|
evt->set_next_event = bfin_coretmr_set_next_event;
|
||||||
|
evt->set_mode = bfin_coretmr_set_mode;
|
||||||
|
|
||||||
bfin_timer_init();
|
clock_tick = get_cclk() / TIME_SCALE;
|
||||||
|
evt->mult = div_sc(clock_tick, NSEC_PER_SEC, evt->shift);
|
||||||
|
evt->max_delta_ns = clockevent_delta2ns(-1, evt);
|
||||||
|
evt->min_delta_ns = clockevent_delta2ns(100, evt);
|
||||||
|
|
||||||
clockevent_bfin.mult = div_sc(timer_clk, NSEC_PER_SEC, clockevent_bfin.shift);
|
evt->cpumask = cpumask_of(cpu);
|
||||||
clockevent_bfin.max_delta_ns = clockevent_delta2ns(-1, &clockevent_bfin);
|
|
||||||
clockevent_bfin.min_delta_ns = clockevent_delta2ns(100, &clockevent_bfin);
|
|
||||||
clockevent_bfin.cpumask = cpumask_of(0);
|
|
||||||
clockevents_register_device(&clockevent_bfin);
|
|
||||||
|
|
||||||
return 0;
|
clockevents_register_device(evt);
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_TICKSOURCE_CORETMR */
|
||||||
|
|
||||||
|
|
||||||
void __init time_init(void)
|
void __init time_init(void)
|
||||||
{
|
{
|
||||||
|
@ -370,5 +375,21 @@ void __init time_init(void)
|
||||||
|
|
||||||
bfin_cs_cycles_init();
|
bfin_cs_cycles_init();
|
||||||
bfin_cs_gptimer0_init();
|
bfin_cs_gptimer0_init();
|
||||||
bfin_clockevent_init();
|
|
||||||
|
#if defined(CONFIG_TICKSOURCE_CORETMR)
|
||||||
|
bfin_coretmr_init();
|
||||||
|
setup_irq(IRQ_CORETMR, &coretmr_irq);
|
||||||
|
bfin_coretmr_clockevent_init();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_TICKSOURCE_GPTMR0)
|
||||||
|
bfin_gptmr0_init();
|
||||||
|
setup_irq(IRQ_TIMER0, &gptmr0_irq);
|
||||||
|
gptmr0_irq.dev_id = &clockevent_gptmr0;
|
||||||
|
bfin_gptmr0_clockevent_init(&clockevent_gptmr0);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !defined(CONFIG_TICKSOURCE_CORETMR) && !defined(CONFIG_TICKSOURCE_GPTMR0)
|
||||||
|
# error at least one clock event device is required
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -138,6 +138,12 @@ static void decode_address(char *buf, unsigned long address)
|
||||||
if (!mm)
|
if (!mm)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (!down_read_trylock(&mm->mmap_sem)) {
|
||||||
|
if (!in_atomic)
|
||||||
|
mmput(mm);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
|
for (n = rb_first(&mm->mm_rb); n; n = rb_next(n)) {
|
||||||
struct vm_area_struct *vma;
|
struct vm_area_struct *vma;
|
||||||
|
|
||||||
|
@ -177,6 +183,7 @@ static void decode_address(char *buf, unsigned long address)
|
||||||
sprintf(buf, "[ %s vma:0x%lx-0x%lx]",
|
sprintf(buf, "[ %s vma:0x%lx-0x%lx]",
|
||||||
name, vma->vm_start, vma->vm_end);
|
name, vma->vm_start, vma->vm_end);
|
||||||
|
|
||||||
|
up_read(&mm->mmap_sem);
|
||||||
if (!in_atomic)
|
if (!in_atomic)
|
||||||
mmput(mm);
|
mmput(mm);
|
||||||
|
|
||||||
|
@ -186,11 +193,16 @@ static void decode_address(char *buf, unsigned long address)
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
up_read(&mm->mmap_sem);
|
||||||
if (!in_atomic)
|
if (!in_atomic)
|
||||||
mmput(mm);
|
mmput(mm);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* we were unable to find this address anywhere */
|
/*
|
||||||
|
* we were unable to find this address anywhere,
|
||||||
|
* or some MMs were skipped because they were in use.
|
||||||
|
*/
|
||||||
sprintf(buf, "/* kernel dynamic memory */");
|
sprintf(buf, "/* kernel dynamic memory */");
|
||||||
|
|
||||||
done:
|
done:
|
||||||
|
@ -248,9 +260,7 @@ asmlinkage notrace void trap_c(struct pt_regs *fp)
|
||||||
#ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
|
#ifdef CONFIG_DEBUG_BFIN_HWTRACE_ON
|
||||||
int j;
|
int j;
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
|
|
||||||
unsigned int cpu = raw_smp_processor_id();
|
unsigned int cpu = raw_smp_processor_id();
|
||||||
#endif
|
|
||||||
const char *strerror = NULL;
|
const char *strerror = NULL;
|
||||||
int sig = 0;
|
int sig = 0;
|
||||||
siginfo_t info;
|
siginfo_t info;
|
||||||
|
@ -639,7 +649,17 @@ asmlinkage notrace void trap_c(struct pt_regs *fp)
|
||||||
{
|
{
|
||||||
info.si_signo = sig;
|
info.si_signo = sig;
|
||||||
info.si_errno = 0;
|
info.si_errno = 0;
|
||||||
info.si_addr = (void __user *)fp->pc;
|
switch (trapnr) {
|
||||||
|
case VEC_CPLB_VL:
|
||||||
|
case VEC_MISALI_D:
|
||||||
|
case VEC_CPLB_M:
|
||||||
|
case VEC_CPLB_MHIT:
|
||||||
|
info.si_addr = (void __user *)cpu_pda[cpu].dcplb_fault_addr;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
info.si_addr = (void __user *)fp->pc;
|
||||||
|
break;
|
||||||
|
}
|
||||||
force_sig_info(sig, &info, current);
|
force_sig_info(sig, &info, current);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -712,7 +732,7 @@ static void decode_instruction(unsigned short *address)
|
||||||
verbose_printk("RTE");
|
verbose_printk("RTE");
|
||||||
else if (opcode == 0x0025)
|
else if (opcode == 0x0025)
|
||||||
verbose_printk("EMUEXCPT");
|
verbose_printk("EMUEXCPT");
|
||||||
else if (opcode == 0x0040 && opcode <= 0x0047)
|
else if (opcode >= 0x0040 && opcode <= 0x0047)
|
||||||
verbose_printk("STI R%i", opcode & 7);
|
verbose_printk("STI R%i", opcode & 7);
|
||||||
else if (opcode >= 0x0050 && opcode <= 0x0057)
|
else if (opcode >= 0x0050 && opcode <= 0x0057)
|
||||||
verbose_printk("JUMP (P%i)", opcode & 7);
|
verbose_printk("JUMP (P%i)", opcode & 7);
|
||||||
|
@ -1096,7 +1116,7 @@ void dump_bfin_mem(struct pt_regs *fp)
|
||||||
/* And the last RETI points to the current userspace context */
|
/* And the last RETI points to the current userspace context */
|
||||||
if ((fp + 1)->pc >= current->mm->start_code &&
|
if ((fp + 1)->pc >= current->mm->start_code &&
|
||||||
(fp + 1)->pc <= current->mm->end_code) {
|
(fp + 1)->pc <= current->mm->end_code) {
|
||||||
verbose_printk(KERN_NOTICE "It might be better to look around here : \n");
|
verbose_printk(KERN_NOTICE "It might be better to look around here :\n");
|
||||||
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
|
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
|
||||||
show_regs(fp + 1);
|
show_regs(fp + 1);
|
||||||
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
|
verbose_printk(KERN_NOTICE "-------------------------------------------\n");
|
||||||
|
|
|
@ -15,7 +15,12 @@ _jiffies = _jiffies_64;
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_RAMKERNEL
|
||||||
. = CONFIG_BOOT_LOAD;
|
. = CONFIG_BOOT_LOAD;
|
||||||
|
#else
|
||||||
|
. = CONFIG_ROM_BASE;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Neither the text, ro_data or bss section need to be aligned
|
/* Neither the text, ro_data or bss section need to be aligned
|
||||||
* So pack them back to back
|
* So pack them back to back
|
||||||
*/
|
*/
|
||||||
|
@ -31,6 +36,12 @@ SECTIONS
|
||||||
LOCK_TEXT
|
LOCK_TEXT
|
||||||
IRQENTRY_TEXT
|
IRQENTRY_TEXT
|
||||||
KPROBES_TEXT
|
KPROBES_TEXT
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
__sinittext = .;
|
||||||
|
INIT_TEXT
|
||||||
|
__einittext = .;
|
||||||
|
EXIT_TEXT
|
||||||
|
#endif
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
*(.fixup)
|
*(.fixup)
|
||||||
|
|
||||||
|
@ -50,8 +61,14 @@ SECTIONS
|
||||||
|
|
||||||
/* Just in case the first read only is a 32-bit access */
|
/* Just in case the first read only is a 32-bit access */
|
||||||
RO_DATA(4)
|
RO_DATA(4)
|
||||||
|
__rodata_end = .;
|
||||||
|
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
. = CONFIG_BOOT_LOAD;
|
||||||
|
.bss : AT(__rodata_end)
|
||||||
|
#else
|
||||||
.bss :
|
.bss :
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
___bss_start = .;
|
___bss_start = .;
|
||||||
|
@ -67,7 +84,11 @@ SECTIONS
|
||||||
___bss_stop = .;
|
___bss_stop = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(CONFIG_ROMKERNEL)
|
||||||
|
.data : AT(LOADADDR(.bss) + SIZEOF(.bss))
|
||||||
|
#else
|
||||||
.data :
|
.data :
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
__sdata = .;
|
__sdata = .;
|
||||||
/* This gets done first, so the glob doesn't suck it in */
|
/* This gets done first, so the glob doesn't suck it in */
|
||||||
|
@ -94,6 +115,8 @@ SECTIONS
|
||||||
|
|
||||||
__edata = .;
|
__edata = .;
|
||||||
}
|
}
|
||||||
|
__data_lma = LOADADDR(.data);
|
||||||
|
__data_len = SIZEOF(.data);
|
||||||
|
|
||||||
/* The init section should be last, so when we free it, it goes into
|
/* The init section should be last, so when we free it, it goes into
|
||||||
* the general memory pool, and (hopefully) will decrease fragmentation
|
* the general memory pool, and (hopefully) will decrease fragmentation
|
||||||
|
@ -103,25 +126,58 @@ SECTIONS
|
||||||
. = ALIGN(PAGE_SIZE);
|
. = ALIGN(PAGE_SIZE);
|
||||||
___init_begin = .;
|
___init_begin = .;
|
||||||
|
|
||||||
|
#ifdef CONFIG_RAMKERNEL
|
||||||
INIT_TEXT_SECTION(PAGE_SIZE)
|
INIT_TEXT_SECTION(PAGE_SIZE)
|
||||||
. = ALIGN(16);
|
|
||||||
INIT_DATA_SECTION(16)
|
|
||||||
PERCPU(4)
|
|
||||||
|
|
||||||
/* we have to discard exit text and such at runtime, not link time, to
|
/* We have to discard exit text and such at runtime, not link time, to
|
||||||
* handle embedded cross-section references (alt instructions, bug
|
* handle embedded cross-section references (alt instructions, bug
|
||||||
* table, eh_frame, etc...)
|
* table, eh_frame, etc...). We need all of our .text up front and
|
||||||
|
* .data after it for PCREL call issues.
|
||||||
*/
|
*/
|
||||||
.exit.text :
|
.exit.text :
|
||||||
{
|
{
|
||||||
EXIT_TEXT
|
EXIT_TEXT
|
||||||
}
|
}
|
||||||
|
|
||||||
|
. = ALIGN(16);
|
||||||
|
INIT_DATA_SECTION(16)
|
||||||
|
PERCPU(4)
|
||||||
|
|
||||||
.exit.data :
|
.exit.data :
|
||||||
{
|
{
|
||||||
EXIT_DATA
|
EXIT_DATA
|
||||||
}
|
}
|
||||||
|
|
||||||
.text_l1 L1_CODE_START : AT(LOADADDR(.exit.data) + SIZEOF(.exit.data))
|
.text_l1 L1_CODE_START : AT(LOADADDR(.exit.data) + SIZEOF(.exit.data))
|
||||||
|
#else
|
||||||
|
.init.data : AT(__data_lma + __data_len)
|
||||||
|
{
|
||||||
|
__sinitdata = .;
|
||||||
|
INIT_DATA
|
||||||
|
INIT_SETUP(16)
|
||||||
|
INIT_CALLS
|
||||||
|
CON_INITCALL
|
||||||
|
SECURITY_INITCALL
|
||||||
|
INIT_RAM_FS
|
||||||
|
|
||||||
|
. = ALIGN(4);
|
||||||
|
___per_cpu_load = .;
|
||||||
|
___per_cpu_start = .;
|
||||||
|
*(.data.percpu.first)
|
||||||
|
*(.data.percpu.page_aligned)
|
||||||
|
*(.data.percpu)
|
||||||
|
*(.data.percpu.shared_aligned)
|
||||||
|
___per_cpu_end = .;
|
||||||
|
|
||||||
|
EXIT_DATA
|
||||||
|
__einitdata = .;
|
||||||
|
}
|
||||||
|
__init_data_lma = LOADADDR(.init.data);
|
||||||
|
__init_data_len = SIZEOF(.init.data);
|
||||||
|
__init_data_end = .;
|
||||||
|
|
||||||
|
.text_l1 L1_CODE_START : AT(__init_data_lma + __init_data_len)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
. = ALIGN(4);
|
. = ALIGN(4);
|
||||||
__stext_l1 = .;
|
__stext_l1 = .;
|
||||||
|
@ -202,7 +258,11 @@ SECTIONS
|
||||||
/* Force trailing alignment of our init section so that when we
|
/* Force trailing alignment of our init section so that when we
|
||||||
* free our init memory, we don't leave behind a partial page.
|
* free our init memory, we don't leave behind a partial page.
|
||||||
*/
|
*/
|
||||||
|
#ifdef CONFIG_RAMKERNEL
|
||||||
. = __l2_lma + __l2_len;
|
. = __l2_lma + __l2_len;
|
||||||
|
#else
|
||||||
|
. = __init_data_end;
|
||||||
|
#endif
|
||||||
. = ALIGN(PAGE_SIZE);
|
. = ALIGN(PAGE_SIZE);
|
||||||
___init_end = .;
|
___init_end = .;
|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,9 @@ config BFIN518F_EZBRD
|
||||||
help
|
help
|
||||||
BF518-EZBRD board support.
|
BF518-EZBRD board support.
|
||||||
|
|
||||||
|
config BFIN518F_TCM
|
||||||
|
bool "Bluetechnix TCM-BF518"
|
||||||
|
help
|
||||||
|
Bluetechnix TCM-BF518 board support.
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
|
@ -3,3 +3,4 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_BFIN518F_EZBRD) += ezbrd.o
|
obj-$(CONFIG_BFIN518F_EZBRD) += ezbrd.o
|
||||||
|
obj-$(CONFIG_BFIN518F_TCM) += tcm-bf518.o
|
||||||
|
|
|
@ -382,30 +382,93 @@ static struct platform_device bfin_spi1_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = IRQ_UART0_RX,
|
||||||
.end = 0xFFC020FF,
|
.end = IRQ_UART0_RX+1,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -499,16 +562,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
@ -593,7 +715,12 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -610,9 +737,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -644,6 +775,33 @@ static int __init ezbrd_init(void)
|
||||||
|
|
||||||
arch_initcall(ezbrd_init);
|
arch_initcall(ezbrd_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezbrd_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezbrd_early_devices,
|
||||||
|
ARRAY_SIZE(ezbrd_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -0,0 +1,753 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2004-2009 Analog Devices Inc.
|
||||||
|
* 2005 National ICT Australia (NICTA)
|
||||||
|
* Aidan Williams <aidan@nicta.com.au>
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/device.h>
|
||||||
|
#include <linux/etherdevice.h>
|
||||||
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/mtd/mtd.h>
|
||||||
|
#include <linux/mtd/partitions.h>
|
||||||
|
#include <linux/mtd/physmap.h>
|
||||||
|
#include <linux/spi/spi.h>
|
||||||
|
#include <linux/spi/flash.h>
|
||||||
|
|
||||||
|
#include <linux/i2c.h>
|
||||||
|
#include <linux/irq.h>
|
||||||
|
#include <linux/interrupt.h>
|
||||||
|
#include <asm/dma.h>
|
||||||
|
#include <asm/bfin5xx_spi.h>
|
||||||
|
#include <asm/reboot.h>
|
||||||
|
#include <asm/portmux.h>
|
||||||
|
#include <asm/dpmc.h>
|
||||||
|
#include <asm/bfin_sdh.h>
|
||||||
|
#include <linux/spi/ad7877.h>
|
||||||
|
#include <net/dsa.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Name the Board for the /proc/cpuinfo
|
||||||
|
*/
|
||||||
|
const char bfin_board_name[] = "Bluetechnix TCM-BF518";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Driver needs to know address, irq and flag pin.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
||||||
|
static struct mtd_partition tcm_partitions[] = {
|
||||||
|
{
|
||||||
|
.name = "bootloader(nor)",
|
||||||
|
.size = 0x40000,
|
||||||
|
.offset = 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.name = "linux(nor)",
|
||||||
|
.size = 0x1C0000,
|
||||||
|
.offset = MTDPART_OFS_APPEND,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct physmap_flash_data tcm_flash_data = {
|
||||||
|
.width = 2,
|
||||||
|
.parts = tcm_partitions,
|
||||||
|
.nr_parts = ARRAY_SIZE(tcm_partitions),
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct resource tcm_flash_resource = {
|
||||||
|
.start = 0x20000000,
|
||||||
|
.end = 0x201fffff,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device tcm_flash_device = {
|
||||||
|
.name = "physmap-flash",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &tcm_flash_data,
|
||||||
|
},
|
||||||
|
.num_resources = 1,
|
||||||
|
.resource = &tcm_flash_resource,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
||||||
|
static struct platform_device rtc_device = {
|
||||||
|
.name = "rtc-bfin",
|
||||||
|
.id = -1,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
|
static struct platform_device bfin_mii_bus = {
|
||||||
|
.name = "bfin_mii_bus",
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_mac_device = {
|
||||||
|
.name = "bfin_mac",
|
||||||
|
.dev.platform_data = &bfin_mii_bus,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
|
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
||||||
|
{
|
||||||
|
.name = "bootloader(spi)",
|
||||||
|
.size = 0x00040000,
|
||||||
|
.offset = 0,
|
||||||
|
.mask_flags = MTD_CAP_ROM
|
||||||
|
}, {
|
||||||
|
.name = "linux kernel(spi)",
|
||||||
|
.size = MTDPART_SIZ_FULL,
|
||||||
|
.offset = MTDPART_OFS_APPEND,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct flash_platform_data bfin_spi_flash_data = {
|
||||||
|
.name = "m25p80",
|
||||||
|
.parts = bfin_spi_flash_partitions,
|
||||||
|
.nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
|
||||||
|
.type = "m25p16",
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SPI flash chip (m25p64) */
|
||||||
|
static struct bfin5xx_spi_chip spi_flash_chip_info = {
|
||||||
|
.enable_dma = 0, /* use dma transfer with this chip*/
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_SPI_ADC) \
|
||||||
|
|| defined(CONFIG_BFIN_SPI_ADC_MODULE)
|
||||||
|
/* SPI ADC chip */
|
||||||
|
static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
|
.enable_dma = 1, /* use dma transfer with this chip*/
|
||||||
|
.bits_per_word = 16,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
||||||
|
static struct bfin5xx_spi_chip mmc_spi_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
|
||||||
|
static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 16,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct ad7877_platform_data bfin_ad7877_ts_info = {
|
||||||
|
.model = 7877,
|
||||||
|
.vref_delay_usecs = 50, /* internal, no capacitor */
|
||||||
|
.x_plate_ohms = 419,
|
||||||
|
.y_plate_ohms = 486,
|
||||||
|
.pressure_max = 1000,
|
||||||
|
.pressure_min = 0,
|
||||||
|
.stopacq_polarity = 1,
|
||||||
|
.first_conversion_delay = 3,
|
||||||
|
.acquisition_time = 1,
|
||||||
|
.averaging = 1,
|
||||||
|
.pen_down_acc_interval = 1,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
|
||||||
|
&& defined(CONFIG_SND_SOC_WM8731_SPI)
|
||||||
|
static struct bfin5xx_spi_chip spi_wm8731_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 16,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
||||||
|
static struct bfin5xx_spi_chip spidev_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
|
{
|
||||||
|
/* the modalias must be the same as spi device driver name */
|
||||||
|
.modalias = "m25p80", /* Name of spi_driver for this device */
|
||||||
|
.max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0, /* Framework bus number */
|
||||||
|
.chip_select = 2, /* SPI0_SSEL2 */
|
||||||
|
.platform_data = &bfin_spi_flash_data,
|
||||||
|
.controller_data = &spi_flash_chip_info,
|
||||||
|
.mode = SPI_MODE_3,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_SPI_ADC) \
|
||||||
|
|| defined(CONFIG_BFIN_SPI_ADC_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
|
||||||
|
.max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0, /* Framework bus number */
|
||||||
|
.chip_select = 1, /* Framework chip select. */
|
||||||
|
.platform_data = NULL, /* No spi_driver specific config */
|
||||||
|
.controller_data = &spi_adc_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "mmc_spi",
|
||||||
|
.max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 5,
|
||||||
|
.controller_data = &mmc_spi_chip_info,
|
||||||
|
.mode = SPI_MODE_3,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "ad7877",
|
||||||
|
.platform_data = &bfin_ad7877_ts_info,
|
||||||
|
.irq = IRQ_PF8,
|
||||||
|
.max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 2,
|
||||||
|
.controller_data = &spi_ad7877_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
|
||||||
|
&& defined(CONFIG_SND_SOC_WM8731_SPI)
|
||||||
|
{
|
||||||
|
.modalias = "wm8731",
|
||||||
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 5,
|
||||||
|
.controller_data = &spi_wm8731_chip_info,
|
||||||
|
.mode = SPI_MODE_0,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "spidev",
|
||||||
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 1,
|
||||||
|
.controller_data = &spidev_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "bfin-lq035q1-spi",
|
||||||
|
.max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 1,
|
||||||
|
.controller_data = &lq035q1_spi_chip_info,
|
||||||
|
.mode = SPI_CPHA | SPI_CPOL,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SPI controller data */
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
/* SPI (0) */
|
||||||
|
static struct bfin5xx_spi_master bfin_spi0_info = {
|
||||||
|
.num_chipselect = 6,
|
||||||
|
.enable_dma = 1, /* master has the ability to do dma transfer */
|
||||||
|
.pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct resource bfin_spi0_resource[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = SPI0_REGBASE,
|
||||||
|
.end = SPI0_REGBASE + 0xFF,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = CH_SPI0,
|
||||||
|
.end = CH_SPI0,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
.start = IRQ_SPI0,
|
||||||
|
.end = IRQ_SPI0,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_spi0_device = {
|
||||||
|
.name = "bfin-spi",
|
||||||
|
.id = 0, /* Bus number */
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_spi0_resource),
|
||||||
|
.resource = bfin_spi0_resource,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_spi0_info, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SPI (1) */
|
||||||
|
static struct bfin5xx_spi_master bfin_spi1_info = {
|
||||||
|
.num_chipselect = 5,
|
||||||
|
.enable_dma = 1, /* master has the ability to do dma transfer */
|
||||||
|
.pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct resource bfin_spi1_resource[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = SPI1_REGBASE,
|
||||||
|
.end = SPI1_REGBASE + 0xFF,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = CH_SPI1,
|
||||||
|
.end = CH_SPI1,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
[2] = {
|
||||||
|
.start = IRQ_SPI1,
|
||||||
|
.end = IRQ_SPI1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_spi1_device = {
|
||||||
|
.name = "bfin-spi",
|
||||||
|
.id = 1, /* Bus number */
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_spi1_resource),
|
||||||
|
.resource = bfin_spi1_resource,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_spi1_info, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART0_THR,
|
||||||
|
.end = UART0_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
static struct resource bfin_sir0_resources[] = {
|
||||||
|
{
|
||||||
|
.start = 0xFFC00400,
|
||||||
|
.end = 0xFFC004FF,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sir0_device = {
|
||||||
|
.name = "bfin_sir",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sir0_resources),
|
||||||
|
.resource = bfin_sir0_resources,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_BFIN_SIR1
|
||||||
|
static struct resource bfin_sir1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = 0xFFC02000,
|
||||||
|
.end = 0xFFC020FF,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sir1_device = {
|
||||||
|
.name = "bfin_sir",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sir1_resources),
|
||||||
|
.resource = bfin_sir1_resources,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
|
||||||
|
static struct resource bfin_twi0_resource[] = {
|
||||||
|
[0] = {
|
||||||
|
.start = TWI0_REGBASE,
|
||||||
|
.end = TWI0_REGBASE,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
[1] = {
|
||||||
|
.start = IRQ_TWI,
|
||||||
|
.end = IRQ_TWI,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device i2c_bfin_twi_device = {
|
||||||
|
.name = "i2c-bfin-twi",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_twi0_resource),
|
||||||
|
.resource = bfin_twi0_resource,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
|
#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("pcf8574_lcd", 0x22),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("pcf8574_keypad", 0x27),
|
||||||
|
.irq = IRQ_PF8,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
|
#include <linux/input.h>
|
||||||
|
#include <linux/gpio_keys.h>
|
||||||
|
|
||||||
|
static struct gpio_keys_button bfin_gpio_keys_table[] = {
|
||||||
|
{BTN_0, GPIO_PG0, 1, "gpio-keys: BTN0"},
|
||||||
|
{BTN_1, GPIO_PG13, 1, "gpio-keys: BTN1"},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct gpio_keys_platform_data bfin_gpio_keys_data = {
|
||||||
|
.buttons = bfin_gpio_keys_table,
|
||||||
|
.nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_device_gpiokeys = {
|
||||||
|
.name = "gpio-keys",
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_gpio_keys_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
|
||||||
|
|
||||||
|
static struct bfin_sd_host bfin_sdh_data = {
|
||||||
|
.dma_chan = CH_RSI,
|
||||||
|
.irq_int0 = IRQ_RSI_INT0,
|
||||||
|
.pin_req = {P_RSI_DATA0, P_RSI_DATA1, P_RSI_DATA2, P_RSI_DATA3, P_RSI_CMD, P_RSI_CLK, 0},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bf51x_sdh_device = {
|
||||||
|
.name = "bfin-sdh",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sdh_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const unsigned int cclk_vlev_datasheet[] =
|
||||||
|
{
|
||||||
|
VRPAIR(VLEV_100, 400000000),
|
||||||
|
VRPAIR(VLEV_105, 426000000),
|
||||||
|
VRPAIR(VLEV_110, 500000000),
|
||||||
|
VRPAIR(VLEV_115, 533000000),
|
||||||
|
VRPAIR(VLEV_120, 600000000),
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
|
||||||
|
.tuple_tab = cclk_vlev_datasheet,
|
||||||
|
.tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
|
||||||
|
.vr_settling_time = 25 /* us */,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_dpmc = {
|
||||||
|
.name = "bfin dpmc",
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_dmpc_vreg_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device *tcm_devices[] __initdata = {
|
||||||
|
|
||||||
|
&bfin_dpmc,
|
||||||
|
|
||||||
|
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
||||||
|
&rtc_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
|
&bfin_mii_bus,
|
||||||
|
&bfin_mac_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
&bfin_spi0_device,
|
||||||
|
&bfin_spi1_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
&bfin_sir0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_BFIN_SIR1
|
||||||
|
&bfin_sir1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
|
||||||
|
&i2c_bfin_twi_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
|
&bfin_device_gpiokeys,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
|
||||||
|
&bf51x_sdh_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
||||||
|
&tcm_flash_device,
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
static int __init tcm_init(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
||||||
|
i2c_register_board_info(0, bfin_i2c_board_info,
|
||||||
|
ARRAY_SIZE(bfin_i2c_board_info));
|
||||||
|
platform_add_devices(tcm_devices, ARRAY_SIZE(tcm_devices));
|
||||||
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
arch_initcall(tcm_init);
|
||||||
|
|
||||||
|
static struct platform_device *tcm_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(tcm_early_devices,
|
||||||
|
ARRAY_SIZE(tcm_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
|
void native_machine_restart(char *cmd)
|
||||||
|
{
|
||||||
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
if ((bfin_read_SYSCR() & 0x7) == 0x3)
|
||||||
|
bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS);
|
||||||
|
}
|
||||||
|
|
||||||
|
void bfin_get_ether_addr(char *addr)
|
||||||
|
{
|
||||||
|
random_ether_addr(addr);
|
||||||
|
printk(KERN_WARNING "%s:%s: Setting Ethernet MAC to a random one\n", __FILE__, __func__);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(bfin_get_ether_addr);
|
|
@ -151,7 +151,17 @@
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PF0
|
#define GPIO_IRQ_BASE IRQ_PF0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PH15 + 1)
|
#define IRQ_MAC_PHYINT 119 /* PHY_INT Interrupt */
|
||||||
|
#define IRQ_MAC_MMCINT 120 /* MMC Counter Interrupt */
|
||||||
|
#define IRQ_MAC_RXFSINT 121 /* RX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_TXFSINT 122 /* TX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_WAKEDET 123 /* Wake-Up Interrupt */
|
||||||
|
#define IRQ_MAC_RXDMAERR 124 /* RX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_TXDMAERR 125 /* TX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_STMDONE 126 /* Station Mgt. Transfer Done Interrupt */
|
||||||
|
|
||||||
|
#define NR_MACH_IRQS (IRQ_MAC_STMDONE + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
#define IVG7 7
|
#define IVG7 7
|
||||||
#define IVG8 8
|
#define IVG8 8
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
#define L1_DATA_A_START 0xFF800000
|
#define L1_DATA_A_START 0xFF800000
|
||||||
#define L1_DATA_B_START 0xFF900000
|
#define L1_DATA_B_START 0xFF900000
|
||||||
|
|
||||||
#define L1_CODE_LENGTH 0xC000
|
#define L1_CODE_LENGTH 0x8000
|
||||||
|
|
||||||
#ifdef CONFIG_BFIN_DCACHE
|
#ifdef CONFIG_BFIN_DCACHE
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,11 @@ config BFIN527_EZKIT
|
||||||
help
|
help
|
||||||
BF527-EZKIT-LITE board support.
|
BF527-EZKIT-LITE board support.
|
||||||
|
|
||||||
|
config BFIN527_EZKIT_V2
|
||||||
|
bool "BF527-EZKIT-V2"
|
||||||
|
help
|
||||||
|
BF527-EZKIT-LITE V2.1+ board support.
|
||||||
|
|
||||||
config BFIN527_BLUETECHNIX_CM
|
config BFIN527_BLUETECHNIX_CM
|
||||||
bool "Bluetechnix CM-BF527"
|
bool "Bluetechnix CM-BF527"
|
||||||
help
|
help
|
||||||
|
|
|
@ -3,5 +3,6 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_BFIN527_EZKIT) += ezkit.o
|
obj-$(CONFIG_BFIN527_EZKIT) += ezkit.o
|
||||||
|
obj-$(CONFIG_BFIN527_EZKIT_V2) += ezkit.o
|
||||||
obj-$(CONFIG_BFIN527_BLUETECHNIX_CM) += cm_bf527.o
|
obj-$(CONFIG_BFIN527_BLUETECHNIX_CM) += cm_bf527.o
|
||||||
obj-$(CONFIG_BFIN526_EZBRD) += ezbrd.o
|
obj-$(CONFIG_BFIN526_EZBRD) += ezbrd.o
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/irq.h>
|
#include <linux/irq.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/usb/sl811.h>
|
|
||||||
#include <linux/usb/musb.h>
|
#include <linux/usb/musb.h>
|
||||||
#include <asm/dma.h>
|
#include <asm/dma.h>
|
||||||
#include <asm/bfin5xx_spi.h>
|
#include <asm/bfin5xx_spi.h>
|
||||||
|
@ -270,50 +269,6 @@ static struct platform_device dm9000_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
static struct resource sl811_hcd_resources[] = {
|
|
||||||
{
|
|
||||||
.start = 0x20340000,
|
|
||||||
.end = 0x20340000,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0x20340004,
|
|
||||||
.end = 0x20340004,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.end = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
void sl811_port_power(struct device *dev, int is_on)
|
|
||||||
{
|
|
||||||
gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
|
|
||||||
gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct sl811_platform_data sl811_priv = {
|
|
||||||
.potpg = 10,
|
|
||||||
.power = 250, /* == 500mA */
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
.port_power = &sl811_port_power,
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device sl811_hcd_device = {
|
|
||||||
.name = "sl811-hcd",
|
|
||||||
.id = 0,
|
|
||||||
.dev = {
|
|
||||||
.platform_data = &sl811_priv,
|
|
||||||
},
|
|
||||||
.num_resources = ARRAY_SIZE(sl811_hcd_resources),
|
|
||||||
.resource = sl811_hcd_resources,
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
.name = "bfin_mii_bus",
|
.name = "bfin_mii_bus",
|
||||||
|
@ -384,8 +339,8 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -462,8 +417,8 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -603,30 +558,105 @@ static struct platform_device cm_flash_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_THR,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
{ /* CTS pin */
|
||||||
|
.start = GPIO_PF9,
|
||||||
|
.end = GPIO_PF9,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin */
|
||||||
|
.start = GPIO_PF10,
|
||||||
|
.end = GPIO_PF10,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -725,16 +755,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
@ -795,10 +884,6 @@ static struct platform_device *cmbf527_devices[] __initdata = {
|
||||||
&rtc_device,
|
&rtc_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
&sl811_hcd_device,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
|
||||||
&bfin_isp1760_device,
|
&bfin_isp1760_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -829,7 +914,12 @@ static struct platform_device *cmbf527_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -846,9 +936,13 @@ static struct platform_device *cmbf527_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -871,6 +965,33 @@ static int __init cm_init(void)
|
||||||
|
|
||||||
arch_initcall(cm_init);
|
arch_initcall(cm_init);
|
||||||
|
|
||||||
|
static struct platform_device *cmbf527_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cmbf527_early_devices,
|
||||||
|
ARRAY_SIZE(cmbf527_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -274,8 +274,8 @@ static const struct ad7879_platform_data bfin_ad7879_ts_info = {
|
||||||
.median = 2, /* do 8 measurements */
|
.median = 2, /* do 8 measurements */
|
||||||
.averaging = 1, /* take the average of 4 middle samples */
|
.averaging = 1, /* take the average of 4 middle samples */
|
||||||
.pen_down_acc_interval = 255, /* 9.4 ms */
|
.pen_down_acc_interval = 255, /* 9.4 ms */
|
||||||
.gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
|
.gpio_export = 1, /* Export GPIO to gpiolib */
|
||||||
.gpio_default = 1, /* During initialization set GPIO = HIGH */
|
.gpio_base = -1, /* Dynamic allocation */
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -439,30 +439,105 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_THR,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
{ /* CTS pin */
|
||||||
|
.start = GPIO_PG0,
|
||||||
|
.end = GPIO_PG0,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin */
|
||||||
|
.start = GPIO_PF10,
|
||||||
|
.end = GPIO_PF10,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -556,16 +631,75 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
@ -615,9 +749,10 @@ static struct platform_device bfin_dpmc = {
|
||||||
#include <asm/bfin-lq035q1.h>
|
#include <asm/bfin-lq035q1.h>
|
||||||
|
|
||||||
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
||||||
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
||||||
.use_bl = 1,
|
.ppi_mode = USE_RGB565_16_BIT_PPI,
|
||||||
.gpio_bl = GPIO_PG12,
|
.use_bl = 1,
|
||||||
|
.gpio_bl = GPIO_PG12,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct resource bfin_lq035q1_resources[] = {
|
static struct resource bfin_lq035q1_resources[] = {
|
||||||
|
@ -665,7 +800,12 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
@ -686,9 +826,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -711,6 +855,33 @@ static int __init ezbrd_init(void)
|
||||||
|
|
||||||
arch_initcall(ezbrd_init);
|
arch_initcall(ezbrd_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezbrd_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezbrd_early_devices,
|
||||||
|
ARRAY_SIZE(ezbrd_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -16,8 +16,9 @@
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
#include <linux/irq.h>
|
#include <linux/irq.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/usb/sl811.h>
|
|
||||||
#include <linux/usb/musb.h>
|
#include <linux/usb/musb.h>
|
||||||
|
#include <linux/leds.h>
|
||||||
|
#include <linux/input.h>
|
||||||
#include <asm/dma.h>
|
#include <asm/dma.h>
|
||||||
#include <asm/bfin5xx_spi.h>
|
#include <asm/bfin5xx_spi.h>
|
||||||
#include <asm/reboot.h>
|
#include <asm/reboot.h>
|
||||||
|
@ -29,7 +30,11 @@
|
||||||
/*
|
/*
|
||||||
* Name the Board for the /proc/cpuinfo
|
* Name the Board for the /proc/cpuinfo
|
||||||
*/
|
*/
|
||||||
|
#ifdef CONFIG_BFIN527_EZKIT_V2
|
||||||
|
const char bfin_board_name[] = "ADI BF527-EZKIT V2";
|
||||||
|
#else
|
||||||
const char bfin_board_name[] = "ADI BF527-EZKIT";
|
const char bfin_board_name[] = "ADI BF527-EZKIT";
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Driver needs to know address, irq and flag pin.
|
* Driver needs to know address, irq and flag pin.
|
||||||
|
@ -143,6 +148,33 @@ static struct platform_device bf52x_t350mcqb_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
#include <asm/bfin-lq035q1.h>
|
||||||
|
|
||||||
|
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
||||||
|
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
||||||
|
.ppi_mode = USE_RGB565_8_BIT_PPI,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct resource bfin_lq035q1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = IRQ_PPI_ERROR,
|
||||||
|
.end = IRQ_PPI_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_lq035q1_device = {
|
||||||
|
.name = "bfin-lq035q1",
|
||||||
|
.id = -1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
|
||||||
|
.resource = bfin_lq035q1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_lq035q1_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
||||||
static struct mtd_partition ezkit_partitions[] = {
|
static struct mtd_partition ezkit_partitions[] = {
|
||||||
{
|
{
|
||||||
|
@ -326,50 +358,6 @@ static struct platform_device dm9000_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
static struct resource sl811_hcd_resources[] = {
|
|
||||||
{
|
|
||||||
.start = 0x20340000,
|
|
||||||
.end = 0x20340000,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0x20340004,
|
|
||||||
.end = 0x20340004,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.end = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
void sl811_port_power(struct device *dev, int is_on)
|
|
||||||
{
|
|
||||||
gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
|
|
||||||
gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct sl811_platform_data sl811_priv = {
|
|
||||||
.potpg = 10,
|
|
||||||
.power = 250, /* == 500mA */
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
.port_power = &sl811_port_power,
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device sl811_hcd_device = {
|
|
||||||
.name = "sl811-hcd",
|
|
||||||
.id = 0,
|
|
||||||
.dev = {
|
|
||||||
.platform_data = &sl811_priv,
|
|
||||||
},
|
|
||||||
.num_resources = ARRAY_SIZE(sl811_hcd_resources),
|
|
||||||
.resource = sl811_hcd_resources,
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
.name = "bfin_mii_bus",
|
.name = "bfin_mii_bus",
|
||||||
|
@ -440,8 +428,8 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -488,8 +476,7 @@ static const struct ad7879_platform_data bfin_ad7879_ts_info = {
|
||||||
.median = 2, /* do 8 measurements */
|
.median = 2, /* do 8 measurements */
|
||||||
.averaging = 1, /* take the average of 4 middle samples */
|
.averaging = 1, /* take the average of 4 middle samples */
|
||||||
.pen_down_acc_interval = 255, /* 9.4 ms */
|
.pen_down_acc_interval = 255, /* 9.4 ms */
|
||||||
.gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
|
.gpio_export = 0, /* Export GPIO to gpiolib */
|
||||||
.gpio_default = 1, /* During initialization set GPIO = HIGH */
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -500,14 +487,6 @@ static struct bfin5xx_spi_chip spi_ad7879_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
|
|
||||||
&& defined(CONFIG_SND_SOC_WM8731_SPI)
|
|
||||||
static struct bfin5xx_spi_chip spi_wm8731_chip_info = {
|
|
||||||
.enable_dma = 0,
|
|
||||||
.bits_per_word = 16,
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
||||||
static struct bfin5xx_spi_chip spidev_chip_info = {
|
static struct bfin5xx_spi_chip spidev_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
|
@ -515,6 +494,29 @@ static struct bfin5xx_spi_chip spidev_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
static struct platform_device bfin_i2s = {
|
||||||
|
.name = "bfin-i2s",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
static struct platform_device bfin_tdm = {
|
||||||
|
.name = "bfin-tdm",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
static struct bfin5xx_spi_chip lq035q1_spi_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
#if defined(CONFIG_MTD_M25P80) \
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|| defined(CONFIG_MTD_M25P80_MODULE)
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
|
@ -542,8 +544,8 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -586,17 +588,6 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
.mode = SPI_CPHA | SPI_CPOL,
|
.mode = SPI_CPHA | SPI_CPOL,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_SND_SOC_WM8731) || defined(CONFIG_SND_SOC_WM8731_MODULE) \
|
|
||||||
&& defined(CONFIG_SND_SOC_WM8731_SPI)
|
|
||||||
{
|
|
||||||
.modalias = "wm8731",
|
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
|
||||||
.bus_num = 0,
|
|
||||||
.chip_select = 5,
|
|
||||||
.controller_data = &spi_wm8731_chip_info,
|
|
||||||
.mode = SPI_MODE_0,
|
|
||||||
},
|
|
||||||
#endif
|
|
||||||
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "spidev",
|
.modalias = "spidev",
|
||||||
|
@ -606,6 +597,16 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
.controller_data = &spidev_chip_info,
|
.controller_data = &spidev_chip_info,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "bfin-lq035q1-spi",
|
||||||
|
.max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 7,
|
||||||
|
.controller_data = &lq035q1_spi_chip_info,
|
||||||
|
.mode = SPI_CPHA | SPI_CPOL,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
@ -647,30 +648,105 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_THR,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
{ /* CTS pin */
|
||||||
|
.start = GPIO_PF9,
|
||||||
|
.end = GPIO_PF9,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin */
|
||||||
|
.start = GPIO_PF10,
|
||||||
|
.end = GPIO_PF10,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -749,6 +825,71 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE)
|
||||||
|
#include <linux/mfd/adp5520.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ADP5520/5501 LEDs Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
static struct led_info adp5520_leds[] = {
|
||||||
|
{
|
||||||
|
.name = "adp5520-led1",
|
||||||
|
.default_trigger = "none",
|
||||||
|
.flags = FLAG_ID_ADP5520_LED1_ADP5501_LED0 | ADP5520_LED_OFFT_600ms,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct adp5520_leds_platform_data adp5520_leds_data = {
|
||||||
|
.num_leds = ARRAY_SIZE(adp5520_leds),
|
||||||
|
.leds = adp5520_leds,
|
||||||
|
.fade_in = ADP5520_FADE_T_600ms,
|
||||||
|
.fade_out = ADP5520_FADE_T_600ms,
|
||||||
|
.led_on_time = ADP5520_LED_ONT_600ms,
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ADP5520 Keypad Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
static const unsigned short adp5520_keymap[ADP5520_KEYMAPSIZE] = {
|
||||||
|
[ADP5520_KEY(3, 3)] = KEY_1,
|
||||||
|
[ADP5520_KEY(2, 3)] = KEY_2,
|
||||||
|
[ADP5520_KEY(1, 3)] = KEY_3,
|
||||||
|
[ADP5520_KEY(0, 3)] = KEY_UP,
|
||||||
|
[ADP5520_KEY(3, 2)] = KEY_4,
|
||||||
|
[ADP5520_KEY(2, 2)] = KEY_5,
|
||||||
|
[ADP5520_KEY(1, 2)] = KEY_6,
|
||||||
|
[ADP5520_KEY(0, 2)] = KEY_DOWN,
|
||||||
|
[ADP5520_KEY(3, 1)] = KEY_7,
|
||||||
|
[ADP5520_KEY(2, 1)] = KEY_8,
|
||||||
|
[ADP5520_KEY(1, 1)] = KEY_9,
|
||||||
|
[ADP5520_KEY(0, 1)] = KEY_DOT,
|
||||||
|
[ADP5520_KEY(3, 0)] = KEY_BACKSPACE,
|
||||||
|
[ADP5520_KEY(2, 0)] = KEY_0,
|
||||||
|
[ADP5520_KEY(1, 0)] = KEY_HELP,
|
||||||
|
[ADP5520_KEY(0, 0)] = KEY_ENTER,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct adp5520_keys_platform_data adp5520_keys_data = {
|
||||||
|
.rows_en_mask = ADP5520_ROW_R3 | ADP5520_ROW_R2 | ADP5520_ROW_R1 | ADP5520_ROW_R0,
|
||||||
|
.cols_en_mask = ADP5520_COL_C3 | ADP5520_COL_C2 | ADP5520_COL_C1 | ADP5520_COL_C0,
|
||||||
|
.keymap = adp5520_keymap,
|
||||||
|
.keymapsize = ARRAY_SIZE(adp5520_keymap),
|
||||||
|
.repeat = 0,
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* ADP5520/5501 Multifuction Device Init Data
|
||||||
|
*/
|
||||||
|
|
||||||
|
static struct adp5520_platform_data adp5520_pdev_data = {
|
||||||
|
.leds = &adp5520_leds_data,
|
||||||
|
.keys = &adp5520_keys_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
|
#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
|
||||||
{
|
{
|
||||||
|
@ -766,22 +907,99 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
I2C_BOARD_INFO("bfin-adv7393", 0x2B),
|
I2C_BOARD_INFO("bfin-adv7393", 0x2B),
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_TOUCHSCREEN_AD7879_I2C) || defined(CONFIG_TOUCHSCREEN_AD7879_I2C_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad7879", 0x2C),
|
||||||
|
.irq = IRQ_PF8,
|
||||||
|
.platform_data = (void *)&bfin_ad7879_ts_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("pmic-adp5520", 0x32),
|
||||||
|
.irq = IRQ_PF9,
|
||||||
|
.platform_data = (void *)&adp5520_pdev_data,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_SND_SOC_SSM2602) || defined(CONFIG_SND_SOC_SSM2602_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ssm2602", 0x1b),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
|
||||||
#include <linux/gpio_keys.h>
|
#include <linux/gpio_keys.h>
|
||||||
|
|
||||||
static struct gpio_keys_button bfin_gpio_keys_table[] = {
|
static struct gpio_keys_button bfin_gpio_keys_table[] = {
|
||||||
|
@ -803,7 +1021,6 @@ static struct platform_device bfin_device_gpiokeys = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
|
#if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE)
|
||||||
#include <linux/input.h>
|
|
||||||
#include <asm/bfin_rotary.h>
|
#include <asm/bfin_rotary.h>
|
||||||
|
|
||||||
static struct bfin_rotary_platform_data bfin_rotary_data = {
|
static struct bfin_rotary_platform_data bfin_rotary_data = {
|
||||||
|
@ -872,10 +1089,6 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
&rtc_device,
|
&rtc_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
&sl811_hcd_device,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
|
||||||
&bfin_isp1760_device,
|
&bfin_isp1760_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -909,8 +1122,17 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
&bf52x_t350mcqb_device,
|
&bf52x_t350mcqb_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
|
||||||
|
&bfin_lq035q1_device,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -927,9 +1149,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -942,6 +1168,14 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
||||||
&ezkit_flash_device,
|
&ezkit_flash_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
&bfin_i2s,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
&bfin_tdm,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init ezkit_init(void)
|
static int __init ezkit_init(void)
|
||||||
|
@ -956,6 +1190,33 @@ static int __init ezkit_init(void)
|
||||||
|
|
||||||
arch_initcall(ezkit_init);
|
arch_initcall(ezkit_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezkit_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezkit_early_devices,
|
||||||
|
ARRAY_SIZE(ezkit_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -151,7 +151,17 @@
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PF0
|
#define GPIO_IRQ_BASE IRQ_PF0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PH15+1)
|
#define IRQ_MAC_PHYINT 119 /* PHY_INT Interrupt */
|
||||||
|
#define IRQ_MAC_MMCINT 120 /* MMC Counter Interrupt */
|
||||||
|
#define IRQ_MAC_RXFSINT 121 /* RX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_TXFSINT 122 /* TX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_WAKEDET 123 /* Wake-Up Interrupt */
|
||||||
|
#define IRQ_MAC_RXDMAERR 124 /* RX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_TXDMAERR 125 /* TX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_STMDONE 126 /* Station Mgt. Transfer Done Interrupt */
|
||||||
|
|
||||||
|
#define NR_MACH_IRQS (IRQ_MAC_STMDONE + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
#define IVG7 7
|
#define IVG7 7
|
||||||
#define IVG8 8
|
#define IVG8 8
|
||||||
|
|
|
@ -171,7 +171,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -206,7 +206,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 16,
|
.max_speed_hz = 16,
|
||||||
|
@ -257,20 +257,49 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -394,7 +423,9 @@ static struct platform_device *h8606_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_8250) || defined(CONFIG_SERIAL_8250_MODULE)
|
#if defined(CONFIG_SERIAL_8250) || defined(CONFIG_SERIAL_8250_MODULE)
|
||||||
|
@ -424,3 +455,18 @@ static int __init H8606_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(H8606_init);
|
arch_initcall(H8606_init);
|
||||||
|
|
||||||
|
static struct platform_device *H8606_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(H8606_early_devices,
|
||||||
|
ARRAY_SIZE(H8606_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -195,20 +195,49 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -241,16 +270,75 @@ static struct platform_device bfin_sir0_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
@ -344,7 +432,9 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -354,9 +444,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -392,3 +486,27 @@ static int __init blackstamp_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(blackstamp_init);
|
arch_initcall(blackstamp_init);
|
||||||
|
|
||||||
|
static struct platform_device *stamp_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(stamp_early_devices,
|
||||||
|
ARRAY_SIZE(stamp_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -71,7 +71,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -110,7 +110,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -242,20 +242,49 @@ static struct platform_device smsc911x_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -288,16 +317,75 @@ static struct platform_device bfin_sir0_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
static struct resource isp1362_hcd_resources[] = {
|
static struct resource isp1362_hcd_resources[] = {
|
||||||
|
@ -432,7 +520,9 @@ static struct platform_device *cm_bf533_devices[] __initdata = {
|
||||||
&bfin_dpmc,
|
&bfin_dpmc,
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -442,9 +532,13 @@ static struct platform_device *cm_bf533_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
|
||||||
&rtc_device,
|
&rtc_device,
|
||||||
|
@ -486,3 +580,27 @@ static int __init cm_bf533_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(cm_bf533_init);
|
arch_initcall(cm_bf533_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf533_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf533_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf533_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -222,7 +222,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -261,7 +261,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -320,20 +320,49 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -444,6 +473,30 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
static struct platform_device bfin_i2s = {
|
||||||
|
.name = "bfin-i2s",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
static struct platform_device bfin_tdm = {
|
||||||
|
.name = "bfin-tdm",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
static struct platform_device bfin_ac97 = {
|
||||||
|
.name = "bfin-ac97",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct platform_device *ezkit_devices[] __initdata = {
|
static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
|
|
||||||
&bfin_dpmc,
|
&bfin_dpmc,
|
||||||
|
@ -471,7 +524,9 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -487,6 +542,18 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
|
#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
|
||||||
&i2c_gpio_device,
|
&i2c_gpio_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
&bfin_i2s,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
&bfin_tdm,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
&bfin_ac97,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init ezkit_init(void)
|
static int __init ezkit_init(void)
|
||||||
|
@ -500,3 +567,18 @@ static int __init ezkit_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(ezkit_init);
|
arch_initcall(ezkit_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezkit_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezkit_early_devices,
|
||||||
|
ARRAY_SIZE(ezkit_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <linux/usb/isp1362.h>
|
#include <linux/usb/isp1362.h>
|
||||||
#endif
|
#endif
|
||||||
#include <asm/irq.h>
|
#include <asm/irq.h>
|
||||||
|
#include <asm/dma.h>
|
||||||
#include <asm/bfin5xx_spi.h>
|
#include <asm/bfin5xx_spi.h>
|
||||||
#include <asm/portmux.h>
|
#include <asm/portmux.h>
|
||||||
|
|
||||||
|
@ -143,20 +144,49 @@ static struct platform_device spi_bfin_master_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -241,7 +271,9 @@ static struct platform_device *ip0x_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -276,3 +308,18 @@ static int __init ip0x_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(ip0x_init);
|
arch_initcall(ip0x_init);
|
||||||
|
|
||||||
|
static struct platform_device *ip0x_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ip0x_early_devices,
|
||||||
|
ARRAY_SIZE(ip0x_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -184,7 +184,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -251,7 +251,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -322,20 +322,49 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX + 1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -368,16 +397,75 @@ static struct platform_device bfin_sir0_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
|
@ -474,6 +562,30 @@ static struct platform_device bfin_dpmc = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
static struct platform_device bfin_i2s = {
|
||||||
|
.name = "bfin-i2s",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
static struct platform_device bfin_tdm = {
|
||||||
|
.name = "bfin-tdm",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
static struct platform_device bfin_ac97 = {
|
||||||
|
.name = "bfin-ac97",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct platform_device *stamp_devices[] __initdata = {
|
static struct platform_device *stamp_devices[] __initdata = {
|
||||||
|
|
||||||
&bfin_dpmc,
|
&bfin_dpmc,
|
||||||
|
@ -495,7 +607,9 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -505,9 +619,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
&bfin_device_gpiokeys,
|
&bfin_device_gpiokeys,
|
||||||
|
@ -520,6 +638,18 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
|
#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
|
||||||
&stamp_flash_device,
|
&stamp_flash_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
&bfin_i2s,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
&bfin_tdm,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
&bfin_ac97,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init stamp_init(void)
|
static int __init stamp_init(void)
|
||||||
|
@ -548,6 +678,30 @@ static int __init stamp_init(void)
|
||||||
|
|
||||||
arch_initcall(stamp_init);
|
arch_initcall(stamp_init);
|
||||||
|
|
||||||
|
static struct platform_device *stamp_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(stamp_early_devices,
|
||||||
|
ARRAY_SIZE(stamp_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround pull up on cpld / flash pin not being strong enough */
|
/* workaround pull up on cpld / flash pin not being strong enough */
|
||||||
|
|
|
@ -104,7 +104,8 @@ Core Emulation **
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PF0
|
#define GPIO_IRQ_BASE IRQ_PF0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PF15+1)
|
#define NR_MACH_IRQS (IRQ_PF15 + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
#define IVG7 7
|
#define IVG7 7
|
||||||
#define IVG8 8
|
#define IVG8 8
|
||||||
|
|
|
@ -73,7 +73,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -112,7 +112,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -329,8 +329,8 @@ static struct platform_device cm_flash_device = {
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
static struct resource bfin_uart0_resources[] = {
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -373,18 +373,25 @@ static struct resource bfin_uart0_resources[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart0_device = {
|
static struct platform_device bfin_uart0_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
.resource = bfin_uart0_resources,
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
static struct resource bfin_uart1_resources[] = {
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_THR,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -427,11 +434,18 @@ static struct resource bfin_uart1_resources[] = {
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart1_device = {
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart1_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -512,16 +526,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
|
@ -633,9 +706,13 @@ static struct platform_device *cm_bf537e_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@ -683,6 +760,33 @@ static int __init cm_bf537e_init(void)
|
||||||
|
|
||||||
arch_initcall(cm_bf537e_init);
|
arch_initcall(cm_bf537e_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf537e_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf537e_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf537e_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void bfin_get_ether_addr(char *addr)
|
void bfin_get_ether_addr(char *addr)
|
||||||
{
|
{
|
||||||
random_ether_addr(addr);
|
random_ether_addr(addr);
|
||||||
|
|
|
@ -74,7 +74,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -113,7 +113,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -327,25 +327,93 @@ static struct platform_device cm_flash_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0xFFC02000,
|
|
||||||
.end = 0xFFC020FF,
|
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -423,16 +491,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
|
@ -522,7 +649,12 @@ static struct platform_device *cm_bf537u_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -539,9 +671,13 @@ static struct platform_device *cm_bf537u_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@ -589,6 +725,33 @@ static int __init cm_bf537u_init(void)
|
||||||
|
|
||||||
arch_initcall(cm_bf537u_init);
|
arch_initcall(cm_bf537u_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf537u_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf537u_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf537u_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void bfin_get_ether_addr(char *addr)
|
void bfin_get_ether_addr(char *addr)
|
||||||
{
|
{
|
||||||
random_ether_addr(addr);
|
random_ether_addr(addr);
|
||||||
|
|
|
@ -211,25 +211,93 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif /* spi master and devices */
|
#endif /* spi master and devices */
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0xFFC02000,
|
|
||||||
.end = 0xFFC020FF,
|
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -309,16 +377,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct platform_device *minotaur_devices[] __initdata = {
|
static struct platform_device *minotaur_devices[] __initdata = {
|
||||||
#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
|
#if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE)
|
||||||
|
@ -343,7 +470,12 @@ static struct platform_device *minotaur_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -360,9 +492,13 @@ static struct platform_device *minotaur_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -380,6 +516,33 @@ static int __init minotaur_init(void)
|
||||||
|
|
||||||
arch_initcall(minotaur_init);
|
arch_initcall(minotaur_init);
|
||||||
|
|
||||||
|
static struct platform_device *minotaur_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(minotaur_early_devices,
|
||||||
|
ARRAY_SIZE(minotaur_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
#include <asm/dma.h>
|
#include <asm/dma.h>
|
||||||
#include <asm/bfin5xx_spi.h>
|
#include <asm/bfin5xx_spi.h>
|
||||||
#include <asm/portmux.h>
|
#include <asm/portmux.h>
|
||||||
#include <linux/usb/sl811.h>
|
|
||||||
|
|
||||||
#include <linux/spi/ad7877.h>
|
#include <linux/spi/ad7877.h>
|
||||||
|
|
||||||
|
@ -99,51 +98,6 @@ static struct platform_device smc91x_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
static struct resource sl811_hcd_resources[] = {
|
|
||||||
{
|
|
||||||
.start = 0x20340000,
|
|
||||||
.end = 0x20340000,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0x20340004,
|
|
||||||
.end = 0x20340004,
|
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.end = CONFIG_USB_SL811_BFIN_IRQ,
|
|
||||||
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
void sl811_port_power(struct device *dev, int is_on)
|
|
||||||
{
|
|
||||||
gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS");
|
|
||||||
gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on);
|
|
||||||
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static struct sl811_platform_data sl811_priv = {
|
|
||||||
.potpg = 10,
|
|
||||||
.power = 250, /* == 500mA */
|
|
||||||
#if defined(CONFIG_USB_SL811_BFIN_USE_VBUS)
|
|
||||||
.port_power = &sl811_port_power,
|
|
||||||
#endif
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct platform_device sl811_hcd_device = {
|
|
||||||
.name = "sl811-hcd",
|
|
||||||
.id = 0,
|
|
||||||
.dev = {
|
|
||||||
.platform_data = &sl811_priv,
|
|
||||||
},
|
|
||||||
.num_resources = ARRAY_SIZE(sl811_hcd_resources),
|
|
||||||
.resource = sl811_hcd_resources,
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
.name = "bfin_mii_bus",
|
.name = "bfin_mii_bus",
|
||||||
|
@ -221,8 +175,8 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -284,8 +238,8 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -362,25 +316,93 @@ static struct platform_device bfin_fb_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0xFFC02000,
|
|
||||||
.end = 0xFFC020FF,
|
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -446,10 +468,6 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
&rtc_device,
|
&rtc_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE)
|
|
||||||
&sl811_hcd_device,
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
||||||
&smc91x_device,
|
&smc91x_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -472,7 +490,12 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -498,6 +521,24 @@ static int __init pnav_init(void)
|
||||||
|
|
||||||
arch_initcall(pnav_init);
|
arch_initcall(pnav_init);
|
||||||
|
|
||||||
|
static struct platform_device *stamp_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(stamp_early_devices,
|
||||||
|
ARRAY_SIZE(stamp_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void bfin_get_ether_addr(char *addr)
|
void bfin_get_ether_addr(char *addr)
|
||||||
{
|
{
|
||||||
random_ether_addr(addr);
|
random_ether_addr(addr);
|
||||||
|
|
|
@ -20,10 +20,12 @@
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
#include <linux/usb/isp1362.h>
|
#include <linux/usb/isp1362.h>
|
||||||
#endif
|
#endif
|
||||||
|
#include <linux/i2c.h>
|
||||||
|
#include <linux/i2c/adp5588.h>
|
||||||
|
#include <linux/etherdevice.h>
|
||||||
#include <linux/ata_platform.h>
|
#include <linux/ata_platform.h>
|
||||||
#include <linux/irq.h>
|
#include <linux/irq.h>
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/i2c.h>
|
|
||||||
#include <linux/usb/sl811.h>
|
#include <linux/usb/sl811.h>
|
||||||
#include <linux/spi/mmc_spi.h>
|
#include <linux/spi/mmc_spi.h>
|
||||||
#include <linux/leds.h>
|
#include <linux/leds.h>
|
||||||
|
@ -33,6 +35,14 @@
|
||||||
#include <asm/reboot.h>
|
#include <asm/reboot.h>
|
||||||
#include <asm/portmux.h>
|
#include <asm/portmux.h>
|
||||||
#include <asm/dpmc.h>
|
#include <asm/dpmc.h>
|
||||||
|
#ifdef CONFIG_REGULATOR_ADP_SWITCH
|
||||||
|
#include <linux/regulator/adp_switch.h>
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_REGULATOR_AD5398
|
||||||
|
#include <linux/regulator/ad5398.h>
|
||||||
|
#endif
|
||||||
|
#include <linux/regulator/consumer.h>
|
||||||
|
#include <linux/regulator/userspace-consumer.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Name the Board for the /proc/cpuinfo
|
* Name the Board for the /proc/cpuinfo
|
||||||
|
@ -208,8 +218,8 @@ static struct resource sl811_hcd_resources[] = {
|
||||||
.end = 0x20340004,
|
.end = 0x20340004,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = CONFIG_USB_SL811_BFIN_IRQ,
|
.start = IRQ_PF4,
|
||||||
.end = CONFIG_USB_SL811_BFIN_IRQ,
|
.end = IRQ_PF4,
|
||||||
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -454,6 +464,9 @@ static struct physmap_flash_data stamp_flash_data = {
|
||||||
.width = 2,
|
.width = 2,
|
||||||
.parts = stamp_partitions,
|
.parts = stamp_partitions,
|
||||||
.nr_parts = ARRAY_SIZE(stamp_partitions),
|
.nr_parts = ARRAY_SIZE(stamp_partitions),
|
||||||
|
#ifdef CONFIG_ROMKERNEL
|
||||||
|
.probe_type = "map_rom",
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct resource stamp_flash_resource = {
|
static struct resource stamp_flash_resource = {
|
||||||
|
@ -515,20 +528,19 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_SOC_AD1836) \
|
#if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
|
||||||
|| defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE)
|
|| defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_SOC_AD1938) \
|
#if defined(CONFIG_SND_BF5XX_SOC_AD193X) \
|
||||||
|| defined(CONFIG_SND_BF5XX_SOC_AD1938_MODULE)
|
|| defined(CONFIG_SND_BF5XX_SOC_AD193X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1938_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1938_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 8,
|
.bits_per_word = 8,
|
||||||
.cs_gpio = GPIO_PF5,
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -644,6 +656,42 @@ static struct ad714x_platform_data ad7142_i2c_platform_data = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S90) || defined(CONFIG_AD2S90_MODULE)
|
||||||
|
static struct bfin5xx_spi_chip ad2s90_spi_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 16,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S120X) || defined(CONFIG_AD2S120X_MODULE)
|
||||||
|
unsigned short ad2s120x_platform_data[] = {
|
||||||
|
/* used as SAMPLE and RDVEL */
|
||||||
|
GPIO_PF5, GPIO_PF6, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct bfin5xx_spi_chip ad2s120x_spi_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 16,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S1210) || defined(CONFIG_AD2S1210_MODULE)
|
||||||
|
unsigned short ad2s1210_platform_data[] = {
|
||||||
|
/* use as SAMPLE, A0, A1 */
|
||||||
|
GPIO_PF7, GPIO_PF8, GPIO_PF9,
|
||||||
|
# if defined(CONFIG_AD2S1210_GPIO_INPUT) || defined(CONFIG_AD2S1210_GPIO_OUTPUT)
|
||||||
|
/* the RES0 and RES1 pins */
|
||||||
|
GPIO_PF4, GPIO_PF5,
|
||||||
|
# endif
|
||||||
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct bfin5xx_spi_chip ad2s1210_spi_chip_info = {
|
||||||
|
.enable_dma = 0,
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
||||||
#define MMC_SPI_CARD_DETECT_INT IRQ_PF5
|
#define MMC_SPI_CARD_DETECT_INT IRQ_PF5
|
||||||
|
|
||||||
|
@ -686,11 +734,11 @@ static const struct ad7877_platform_data bfin_ad7877_ts_info = {
|
||||||
.y_plate_ohms = 486,
|
.y_plate_ohms = 486,
|
||||||
.pressure_max = 1000,
|
.pressure_max = 1000,
|
||||||
.pressure_min = 0,
|
.pressure_min = 0,
|
||||||
.stopacq_polarity = 1,
|
.stopacq_polarity = 1,
|
||||||
.first_conversion_delay = 3,
|
.first_conversion_delay = 3,
|
||||||
.acquisition_time = 1,
|
.acquisition_time = 1,
|
||||||
.averaging = 1,
|
.averaging = 1,
|
||||||
.pen_down_acc_interval = 1,
|
.pen_down_acc_interval = 1,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -701,13 +749,13 @@ static const struct ad7879_platform_data bfin_ad7879_ts_info = {
|
||||||
.x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */
|
.x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */
|
||||||
.pressure_max = 10000,
|
.pressure_max = 10000,
|
||||||
.pressure_min = 0,
|
.pressure_min = 0,
|
||||||
.first_conversion_delay = 3, /* wait 512us before do a first conversion */
|
.first_conversion_delay = 3, /* wait 512us before do a first conversion */
|
||||||
.acquisition_time = 1, /* 4us acquisition time per sample */
|
.acquisition_time = 1, /* 4us acquisition time per sample */
|
||||||
.median = 2, /* do 8 measurements */
|
.median = 2, /* do 8 measurements */
|
||||||
.averaging = 1, /* take the average of 4 middle samples */
|
.averaging = 1, /* take the average of 4 middle samples */
|
||||||
.pen_down_acc_interval = 255, /* 9.4 ms */
|
.pen_down_acc_interval = 255, /* 9.4 ms */
|
||||||
.gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
|
.gpio_export = 1, /* Export GPIO to gpiolib */
|
||||||
.gpio_default = 1, /* During initialization set GPIO = HIGH */
|
.gpio_base = -1, /* Dynamic allocation */
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -742,6 +790,11 @@ static const struct adxl34x_platform_data adxl34x_info = {
|
||||||
/* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */
|
/* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */
|
||||||
.power_mode = ADXL_AUTO_SLEEP | ADXL_LINK,
|
.power_mode = ADXL_AUTO_SLEEP | ADXL_LINK,
|
||||||
.fifo_mode = ADXL_FIFO_STREAM,
|
.fifo_mode = ADXL_FIFO_STREAM,
|
||||||
|
.orientation_enable = ADXL_EN_ORIENTATION_3D,
|
||||||
|
.deadzone_angle = ADXL_DEADZONE_ANGLE_10p8,
|
||||||
|
.divisor_length = ADXL_LP_FILTER_DIVISOR_16,
|
||||||
|
/* EV_KEY {+Z, +Y, +X, -X, -Y, -Z} */
|
||||||
|
.ev_codes_orient_3d = {BTN_Z, BTN_Y, BTN_X, BTN_A, BTN_B, BTN_C},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -813,6 +866,35 @@ static struct adf702x_platform_data adf7021_platform_data = {
|
||||||
.adf702x_regs = adf7021_regs,
|
.adf702x_regs = adf7021_regs,
|
||||||
.tx_reg = TXREG,
|
.tx_reg = TXREG,
|
||||||
};
|
};
|
||||||
|
static inline void adf702x_mac_init(void)
|
||||||
|
{
|
||||||
|
random_ether_addr(adf7021_platform_data.mac_addr);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
static inline void adf702x_mac_init(void) {}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
|
||||||
|
#include <linux/spi/ads7846.h>
|
||||||
|
static struct bfin5xx_spi_chip ad7873_spi_chip_info = {
|
||||||
|
.bits_per_word = 8,
|
||||||
|
};
|
||||||
|
|
||||||
|
static int ads7873_get_pendown_state(void)
|
||||||
|
{
|
||||||
|
return gpio_get_value(GPIO_PF6);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct ads7846_platform_data __initdata ad7873_pdata = {
|
||||||
|
.model = 7873, /* AD7873 */
|
||||||
|
.x_max = 0xfff,
|
||||||
|
.y_max = 0xfff,
|
||||||
|
.x_plate_ohms = 620,
|
||||||
|
.debounce_max = 1,
|
||||||
|
.debounce_rep = 0,
|
||||||
|
.debounce_tol = (~0),
|
||||||
|
.get_pendown_state = ads7873_get_pendown_state,
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_DATAFLASH) \
|
#if defined(CONFIG_MTD_DATAFLASH) \
|
||||||
|
@ -893,24 +975,25 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_SOC_AD1836) \
|
#if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
|
||||||
|| defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE)
|
|| defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad183x",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.chip_select = 4,/* CONFIG_SND_BLACKFIN_SPI_PFBIT */
|
.chip_select = 4,/* CONFIG_SND_BLACKFIN_SPI_PFBIT */
|
||||||
|
.platform_data = "ad1836", /* only includes chip name for the moment */
|
||||||
.controller_data = &ad1836_spi_chip_info,
|
.controller_data = &ad1836_spi_chip_info,
|
||||||
.mode = SPI_MODE_3,
|
.mode = SPI_MODE_3,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_SOC_AD1938) || defined(CONFIG_SND_BF5XX_SOC_AD1938_MODULE)
|
#if defined(CONFIG_SND_BF5XX_SOC_AD193X) || defined(CONFIG_SND_BF5XX_SOC_AD193X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1938",
|
.modalias = "ad193x",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.chip_select = 0,/* CONFIG_SND_BLACKFIN_SPI_PFBIT */
|
.chip_select = 5,
|
||||||
.controller_data = &ad1938_spi_chip_info,
|
.controller_data = &ad1938_spi_chip_info,
|
||||||
.mode = SPI_MODE_3,
|
.mode = SPI_MODE_3,
|
||||||
},
|
},
|
||||||
|
@ -929,6 +1012,37 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S90) || defined(CONFIG_AD2S90_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "ad2s90",
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 3, /* change it for your board */
|
||||||
|
.platform_data = NULL,
|
||||||
|
.controller_data = &ad2s90_spi_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S120X) || defined(CONFIG_AD2S120X_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "ad2s120x",
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 4, /* CS, change it for your board */
|
||||||
|
.platform_data = ad2s120x_platform_data,
|
||||||
|
.controller_data = &ad2s120x_spi_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD2S1210) || defined(CONFIG_AD2S1210_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "ad2s1210",
|
||||||
|
.max_speed_hz = 8192000,
|
||||||
|
.bus_num = 0,
|
||||||
|
.chip_select = 4, /* CS, change it for your board */
|
||||||
|
.platform_data = ad2s1210_platform_data,
|
||||||
|
.controller_data = &ad2s1210_spi_chip_info,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "mmc_spi",
|
.modalias = "mmc_spi",
|
||||||
|
@ -1016,7 +1130,18 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
.mode = SPI_MODE_0,
|
.mode = SPI_MODE_0,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_TOUCHSCREEN_ADS7846) || defined(CONFIG_TOUCHSCREEN_ADS7846_MODULE)
|
||||||
|
{
|
||||||
|
.modalias = "ads7846",
|
||||||
|
.max_speed_hz = 2000000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
.bus_num = 0,
|
||||||
|
.irq = IRQ_PF6,
|
||||||
|
.chip_select = GPIO_PF10 + MAX_CTRL_CS, /* GPIO controlled SSEL */
|
||||||
|
.controller_data = &ad7873_spi_chip_info,
|
||||||
|
.platform_data = &ad7873_pdata,
|
||||||
|
.mode = SPI_MODE_0,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
@ -1132,9 +1257,10 @@ static struct platform_device bfin_fb_device = {
|
||||||
#include <asm/bfin-lq035q1.h>
|
#include <asm/bfin-lq035q1.h>
|
||||||
|
|
||||||
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
||||||
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
||||||
.use_bl = 0, /* let something else control the LCD Blacklight */
|
.ppi_mode = USE_RGB565_16_BIT_PPI,
|
||||||
.gpio_bl = GPIO_PF7,
|
.use_bl = 0, /* let something else control the LCD Blacklight */
|
||||||
|
.gpio_bl = GPIO_PF7,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct resource bfin_lq035q1_resources[] = {
|
static struct resource bfin_lq035q1_resources[] = {
|
||||||
|
@ -1148,8 +1274,8 @@ static struct resource bfin_lq035q1_resources[] = {
|
||||||
static struct platform_device bfin_lq035q1_device = {
|
static struct platform_device bfin_lq035q1_device = {
|
||||||
.name = "bfin-lq035q1",
|
.name = "bfin-lq035q1",
|
||||||
.id = -1,
|
.id = -1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
|
.num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
|
||||||
.resource = bfin_lq035q1_resources,
|
.resource = bfin_lq035q1_resources,
|
||||||
.dev = {
|
.dev = {
|
||||||
.platform_data = &bfin_lq035q1_data,
|
.platform_data = &bfin_lq035q1_data,
|
||||||
},
|
},
|
||||||
|
@ -1157,30 +1283,105 @@ static struct platform_device bfin_lq035q1_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = IRQ_UART0_RX,
|
||||||
.end = 0xFFC020FF,
|
.end = IRQ_UART0_RX+1,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART0_CTSRTS
|
||||||
|
{ /* CTS pin */
|
||||||
|
.start = GPIO_PG7,
|
||||||
|
.end = GPIO_PG7,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin */
|
||||||
|
.start = GPIO_PG6,
|
||||||
|
.end = GPIO_PG6,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -1260,7 +1461,6 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE)
|
#if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE)
|
||||||
#include <linux/i2c/adp5588.h>
|
|
||||||
static const unsigned short adp5588_keymap[ADP5588_KEYMAPSIZE] = {
|
static const unsigned short adp5588_keymap[ADP5588_KEYMAPSIZE] = {
|
||||||
[0] = KEY_GRAVE,
|
[0] = KEY_GRAVE,
|
||||||
[1] = KEY_1,
|
[1] = KEY_1,
|
||||||
|
@ -1457,7 +1657,6 @@ static struct adp5520_platform_data adp5520_pdev_data = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_GPIO_ADP5588) || defined(CONFIG_GPIO_ADP5588_MODULE)
|
#if defined(CONFIG_GPIO_ADP5588) || defined(CONFIG_GPIO_ADP5588_MODULE)
|
||||||
#include <linux/i2c/adp5588.h>
|
|
||||||
static struct adp5588_gpio_platform_data adp5588_gpio_data = {
|
static struct adp5588_gpio_platform_data adp5588_gpio_data = {
|
||||||
.gpio_start = 50,
|
.gpio_start = 50,
|
||||||
.pullup_dis_mask = 0,
|
.pullup_dis_mask = 0,
|
||||||
|
@ -1516,6 +1715,101 @@ static struct adp8870_backlight_platform_data adp8870_pdata = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_BACKLIGHT_ADP8860) || defined(CONFIG_BACKLIGHT_ADP8860_MODULE)
|
||||||
|
#include <linux/i2c/adp8860.h>
|
||||||
|
static struct led_info adp8860_leds[] = {
|
||||||
|
{
|
||||||
|
.name = "adp8860-led7",
|
||||||
|
.default_trigger = "none",
|
||||||
|
.flags = ADP8860_LED_D7 | ADP8860_LED_OFFT_600ms,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct adp8860_backlight_platform_data adp8860_pdata = {
|
||||||
|
.bl_led_assign = ADP8860_BL_D1 | ADP8860_BL_D2 | ADP8860_BL_D3 |
|
||||||
|
ADP8860_BL_D4 | ADP8860_BL_D5 | ADP8860_BL_D6, /* 1 = Backlight 0 = Individual LED */
|
||||||
|
|
||||||
|
.bl_fade_in = ADP8860_FADE_T_1200ms, /* Backlight Fade-In Timer */
|
||||||
|
.bl_fade_out = ADP8860_FADE_T_1200ms, /* Backlight Fade-Out Timer */
|
||||||
|
.bl_fade_law = ADP8860_FADE_LAW_CUBIC1, /* fade-on/fade-off transfer characteristic */
|
||||||
|
|
||||||
|
.en_ambl_sens = 1, /* 1 = enable ambient light sensor */
|
||||||
|
.abml_filt = ADP8860_BL_AMBL_FILT_320ms, /* Light sensor filter time */
|
||||||
|
|
||||||
|
.l1_daylight_max = ADP8860_BL_CUR_mA(20), /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
.l1_daylight_dim = ADP8860_BL_CUR_mA(0), /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
.l2_office_max = ADP8860_BL_CUR_mA(6), /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
.l2_office_dim = ADP8860_BL_CUR_mA(0), /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
.l3_dark_max = ADP8860_BL_CUR_mA(2), /* use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
.l3_dark_dim = ADP8860_BL_CUR_mA(0), /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */
|
||||||
|
|
||||||
|
.l2_trip = ADP8860_L2_COMP_CURR_uA(710), /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */
|
||||||
|
.l2_hyst = ADP8860_L2_COMP_CURR_uA(73), /* use L2_COMP_CURR_uA(I) 0 <= I <= 1106 uA */
|
||||||
|
.l3_trip = ADP8860_L3_COMP_CURR_uA(43), /* use L3_COMP_CURR_uA(I) 0 <= I <= 138 uA */
|
||||||
|
.l3_hyst = ADP8860_L3_COMP_CURR_uA(11), /* use L3_COMP_CURR_uA(I) 0 <= I <= 138 uA */
|
||||||
|
|
||||||
|
.leds = adp8860_leds,
|
||||||
|
.num_leds = ARRAY_SIZE(adp8860_leds),
|
||||||
|
.led_fade_law = ADP8860_FADE_LAW_SQUARE, /* fade-on/fade-off transfer characteristic */
|
||||||
|
.led_fade_in = ADP8860_FADE_T_600ms,
|
||||||
|
.led_fade_out = ADP8860_FADE_T_600ms,
|
||||||
|
.led_on_time = ADP8860_LED_ONT_200ms,
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_REGULATOR_AD5398) || defined(CONFIG_REGULATOR_AD5398_MODULE)
|
||||||
|
static struct regulator_consumer_supply ad5398_consumer = {
|
||||||
|
.supply = "current",
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_init_data ad5398_regulator_data = {
|
||||||
|
.constraints = {
|
||||||
|
.name = "current range",
|
||||||
|
.max_uA = 120000,
|
||||||
|
.valid_ops_mask = REGULATOR_CHANGE_CURRENT | REGULATOR_CHANGE_STATUS,
|
||||||
|
},
|
||||||
|
.num_consumer_supplies = 1,
|
||||||
|
.consumer_supplies = &ad5398_consumer,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct ad5398_platform_data ad5398_i2c_platform_data = {
|
||||||
|
.current_bits = 10,
|
||||||
|
.current_offset = 4,
|
||||||
|
.regulator_data = &ad5398_regulator_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_REGULATOR_VIRTUAL_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_VIRTUAL_CONSUMER_MODULE)
|
||||||
|
static struct platform_device ad5398_virt_consumer_device = {
|
||||||
|
.name = "reg-virt-consumer",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = "current", /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_REGULATOR_USERSPACE_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_USERSPACE_CONSUMER_MODULE)
|
||||||
|
static struct regulator_bulk_data ad5398_bulk_data = {
|
||||||
|
.supply = "current",
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_userspace_consumer_data ad5398_userspace_comsumer_data = {
|
||||||
|
.name = "ad5398",
|
||||||
|
.num_supplies = 1,
|
||||||
|
.supplies = &ad5398_bulk_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device ad5398_userspace_consumer_device = {
|
||||||
|
.name = "reg-userspace-consumer",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &ad5398_userspace_comsumer_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
#if defined(CONFIG_INPUT_AD714X_I2C) || defined(CONFIG_INPUT_AD714X_I2C_MODULE)
|
#if defined(CONFIG_INPUT_AD714X_I2C) || defined(CONFIG_INPUT_AD714X_I2C_MODULE)
|
||||||
{
|
{
|
||||||
|
@ -1524,6 +1818,52 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
.platform_data = (void *)&ad7142_i2c_platform_data,
|
.platform_data = (void *)&ad7142_i2c_platform_data,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD7150) || defined(CONFIG_AD7150_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad7150", 0x48),
|
||||||
|
.irq = IRQ_PG5, /* fixme: use real interrupt number */
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD7152) || defined(CONFIG_AD7152_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad7152", 0x48),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD774X) || defined(CONFIG_AD774X_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad774x", 0x48),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD7414) || defined(CONFIG_AD7414_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad7414", 0x9),
|
||||||
|
.irq = IRQ_PG5,
|
||||||
|
/*
|
||||||
|
* platform_data pointer is borrwoed by the driver to
|
||||||
|
* store custimer defined IRQ ALART level mode.
|
||||||
|
* only IRQF_TRIGGER_HIGH and IRQF_TRIGGER_LOW are valid.
|
||||||
|
*/
|
||||||
|
.platform_data = (void *)IRQF_TRIGGER_LOW,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_AD7416) || defined(CONFIG_AD7416_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad7417", 0xb),
|
||||||
|
.irq = IRQ_PG5,
|
||||||
|
/*
|
||||||
|
* platform_data pointer is borrwoed by the driver to
|
||||||
|
* store custimer defined IRQ ALART level mode.
|
||||||
|
* only IRQF_TRIGGER_HIGH and IRQF_TRIGGER_LOW are valid.
|
||||||
|
*/
|
||||||
|
.platform_data = (void *)IRQF_TRIGGER_LOW,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
|
#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
|
||||||
{
|
{
|
||||||
I2C_BOARD_INFO("pcf8574_lcd", 0x22),
|
I2C_BOARD_INFO("pcf8574_lcd", 0x22),
|
||||||
|
@ -1595,24 +1935,105 @@ static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
||||||
I2C_BOARD_INFO("adau1761", 0x38),
|
I2C_BOARD_INFO("adau1761", 0x38),
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_SND_SOC_ADAU1361) || defined(CONFIG_SND_SOC_ADAU1361_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("adau1361", 0x38),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
#if defined(CONFIG_AD525X_DPOT) || defined(CONFIG_AD525X_DPOT_MODULE)
|
#if defined(CONFIG_AD525X_DPOT) || defined(CONFIG_AD525X_DPOT_MODULE)
|
||||||
{
|
{
|
||||||
I2C_BOARD_INFO("ad5258", 0x18),
|
I2C_BOARD_INFO("ad5258", 0x18),
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(CONFIG_SND_SOC_SSM2602) || defined(CONFIG_SND_SOC_SSM2602_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ssm2602", 0x1b),
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_REGULATOR_AD5398) || defined(CONFIG_REGULATOR_AD5398_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("ad5398", 0xC),
|
||||||
|
.platform_data = (void *)&ad5398_i2c_platform_data,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_BACKLIGHT_ADP8860) || defined(CONFIG_BACKLIGHT_ADP8860_MODULE)
|
||||||
|
{
|
||||||
|
I2C_BOARD_INFO("adp8860", 0x2A),
|
||||||
|
.platform_data = (void *)&adp8860_pdata,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
#define CF_IDE_NAND_CARD_USE_HDD_INTERFACE
|
#define CF_IDE_NAND_CARD_USE_HDD_INTERFACE
|
||||||
|
@ -1701,13 +2122,121 @@ static struct platform_device bfin_dpmc = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
static struct platform_device bfin_tdm = {
|
static struct platform_device bfin_i2s = {
|
||||||
.name = "bfin-tdm",
|
.name = "bfin-i2s",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
/* TODO: add platform data here */
|
/* TODO: add platform data here */
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
static struct platform_device bfin_tdm = {
|
||||||
|
.name = "bfin-tdm",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
static struct platform_device bfin_ac97 = {
|
||||||
|
.name = "bfin-ac97",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_REGULATOR_ADP_SWITCH) || defined(CONFIG_REGULATOR_ADP_SWITCH_MODULE)
|
||||||
|
#define REGULATOR_ADP122 "adp122"
|
||||||
|
#define REGULATOR_ADP150 "adp150"
|
||||||
|
|
||||||
|
static struct regulator_consumer_supply adp122_consumers = {
|
||||||
|
.supply = REGULATOR_ADP122,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_consumer_supply adp150_consumers = {
|
||||||
|
.supply = REGULATOR_ADP150,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_init_data adp_switch_regulator_data[] = {
|
||||||
|
{
|
||||||
|
.constraints = {
|
||||||
|
.name = REGULATOR_ADP122,
|
||||||
|
.valid_ops_mask = REGULATOR_CHANGE_STATUS,
|
||||||
|
.min_uA = 0,
|
||||||
|
.max_uA = 300000,
|
||||||
|
},
|
||||||
|
.num_consumer_supplies = 1, /* only 1 */
|
||||||
|
.consumer_supplies = &adp122_consumers,
|
||||||
|
.driver_data = (void *)GPIO_PF2, /* gpio port only */
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.constraints = {
|
||||||
|
.name = REGULATOR_ADP150,
|
||||||
|
.valid_ops_mask = REGULATOR_CHANGE_STATUS,
|
||||||
|
.min_uA = 0,
|
||||||
|
.max_uA = 150000,
|
||||||
|
},
|
||||||
|
.num_consumer_supplies = 1, /* only 1 */
|
||||||
|
.consumer_supplies = &adp150_consumers,
|
||||||
|
.driver_data = (void *)GPIO_PF3, /* gpio port only */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct adp_switch_platform_data adp_switch_pdata = {
|
||||||
|
.regulator_num = ARRAY_SIZE(adp_switch_regulator_data),
|
||||||
|
.regulator_data = adp_switch_regulator_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device adp_switch_device = {
|
||||||
|
.name = "adp_switch",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &adp_switch_pdata,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_REGULATOR_USERSPACE_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_USERSPACE_CONSUMER_MODULE)
|
||||||
|
static struct regulator_bulk_data adp122_bulk_data = {
|
||||||
|
.supply = REGULATOR_ADP122,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_userspace_consumer_data adp122_userspace_comsumer_data = {
|
||||||
|
.name = REGULATOR_ADP122,
|
||||||
|
.num_supplies = 1,
|
||||||
|
.supplies = &adp122_bulk_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device adp122_userspace_consumer_device = {
|
||||||
|
.name = "reg-userspace-consumer",
|
||||||
|
.id = 0,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &adp122_userspace_comsumer_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_bulk_data adp150_bulk_data = {
|
||||||
|
.supply = REGULATOR_ADP150,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct regulator_userspace_consumer_data adp150_userspace_comsumer_data = {
|
||||||
|
.name = REGULATOR_ADP150,
|
||||||
|
.num_supplies = 1,
|
||||||
|
.supplies = &adp150_bulk_data,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device adp150_userspace_consumer_device = {
|
||||||
|
.name = "reg-userspace-consumer",
|
||||||
|
.id = 1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &adp150_userspace_comsumer_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
static struct platform_device *stamp_devices[] __initdata = {
|
static struct platform_device *stamp_devices[] __initdata = {
|
||||||
|
|
||||||
&bfin_dpmc,
|
&bfin_dpmc,
|
||||||
|
@ -1771,7 +2300,12 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -1788,9 +2322,13 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
&bfin_pata_device,
|
&bfin_pata_device,
|
||||||
|
@ -1808,18 +2346,46 @@ static struct platform_device *stamp_devices[] __initdata = {
|
||||||
&stamp_flash_device,
|
&stamp_flash_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
&bfin_i2s,
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
&bfin_tdm,
|
&bfin_tdm,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
&bfin_ac97,
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_REGULATOR_AD5398) || defined(CONFIG_REGULATOR_AD5398_MODULE)
|
||||||
|
#if defined(CONFIG_REGULATOR_VIRTUAL_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_VIRTUAL_CONSUMER_MODULE)
|
||||||
|
&ad5398_virt_consumer_device,
|
||||||
|
#endif
|
||||||
|
#if defined(CONFIG_REGULATOR_USERSPACE_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_USERSPACE_CONSUMER_MODULE)
|
||||||
|
&ad5398_userspace_consumer_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_REGULATOR_ADP_SWITCH) || defined(CONFIG_REGULATOR_ADP_SWITCH_MODULE)
|
||||||
|
&adp_switch_device,
|
||||||
|
#if defined(CONFIG_REGULATOR_USERSPACE_CONSUMER) || \
|
||||||
|
defined(CONFIG_REGULATOR_USERSPACE_CONSUMER_MODULE)
|
||||||
|
&adp122_userspace_consumer_device,
|
||||||
|
&adp150_userspace_consumer_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init stamp_init(void)
|
static int __init stamp_init(void)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
||||||
|
bfin_plat_nand_init();
|
||||||
|
adf702x_mac_init();
|
||||||
|
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
||||||
i2c_register_board_info(0, bfin_i2c_board_info,
|
i2c_register_board_info(0, bfin_i2c_board_info,
|
||||||
ARRAY_SIZE(bfin_i2c_board_info));
|
ARRAY_SIZE(bfin_i2c_board_info));
|
||||||
bfin_plat_nand_init();
|
|
||||||
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
|
||||||
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1827,6 +2393,34 @@ static int __init stamp_init(void)
|
||||||
|
|
||||||
arch_initcall(stamp_init);
|
arch_initcall(stamp_init);
|
||||||
|
|
||||||
|
|
||||||
|
static struct platform_device *stamp_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(stamp_early_devices,
|
||||||
|
ARRAY_SIZE(stamp_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
/* workaround reboot hang when booting from SPI */
|
/* workaround reboot hang when booting from SPI */
|
||||||
|
|
|
@ -74,7 +74,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -113,7 +113,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -327,25 +327,93 @@ static struct platform_device cm_flash_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
|
||||||
}, {
|
|
||||||
.start = 0xFFC02000,
|
|
||||||
.end = 0xFFC020FF,
|
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -425,16 +493,75 @@ static struct platform_device i2c_bfin_twi_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport0_uart_device = {
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_sport1_uart_device = {
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
.name = "bfin-sport-uart",
|
.name = "bfin-sport-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
#if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE)
|
||||||
static struct platform_device bfin_mii_bus = {
|
static struct platform_device bfin_mii_bus = {
|
||||||
|
@ -524,7 +651,12 @@ static struct platform_device *cm_bf537_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -541,9 +673,13 @@ static struct platform_device *cm_bf537_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
&bfin_sport0_uart_device,
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
&bfin_sport1_uart_device,
|
&bfin_sport1_uart_device,
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
|
||||||
&isp1362_hcd_device,
|
&isp1362_hcd_device,
|
||||||
|
@ -591,6 +727,33 @@ static int __init tcm_bf537_init(void)
|
||||||
|
|
||||||
arch_initcall(tcm_bf537_init);
|
arch_initcall(tcm_bf537_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf537_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf537_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf537_early_devices));
|
||||||
|
}
|
||||||
|
|
||||||
void bfin_get_ether_addr(char *addr)
|
void bfin_get_ether_addr(char *addr)
|
||||||
{
|
{
|
||||||
random_ether_addr(addr);
|
random_ether_addr(addr);
|
||||||
|
|
|
@ -134,7 +134,17 @@
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PF0
|
#define GPIO_IRQ_BASE IRQ_PF0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PH15+1)
|
#define IRQ_MAC_PHYINT 98 /* PHY_INT Interrupt */
|
||||||
|
#define IRQ_MAC_MMCINT 99 /* MMC Counter Interrupt */
|
||||||
|
#define IRQ_MAC_RXFSINT 100 /* RX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_TXFSINT 101 /* TX Frame-Status Interrupt */
|
||||||
|
#define IRQ_MAC_WAKEDET 102 /* Wake-Up Interrupt */
|
||||||
|
#define IRQ_MAC_RXDMAERR 103 /* RX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_TXDMAERR 104 /* TX DMA Direction Error Interrupt */
|
||||||
|
#define IRQ_MAC_STMDONE 105 /* Station Mgt. Transfer Done Interrupt */
|
||||||
|
|
||||||
|
#define NR_MACH_IRQS (IRQ_MAC_STMDONE + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
#define IVG7 7
|
#define IVG7 7
|
||||||
#define IVG8 8
|
#define IVG8 8
|
||||||
|
|
|
@ -41,37 +41,148 @@ static struct platform_device rtc_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = IRQ_UART0_RX,
|
||||||
.end = 0xFFC020FF,
|
.end = IRQ_UART0_RX+1,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART2
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02100,
|
.start = IRQ_UART0_ERROR,
|
||||||
.end = 0xFFC021FF,
|
.end = IRQ_UART0_ERROR,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART0_CTSRTS
|
||||||
|
{ /* CTS pin */
|
||||||
|
.start = GPIO_PG7,
|
||||||
|
.end = GPIO_PG7,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin */
|
||||||
|
.start = GPIO_PG6,
|
||||||
|
.end = GPIO_PG6,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART1_THR,
|
||||||
|
.end = UART1_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_RX,
|
||||||
|
.end = IRQ_UART1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART1_ERROR,
|
||||||
|
.end = IRQ_UART1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
static struct resource bfin_uart2_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART2_THR,
|
||||||
|
.end = UART2_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_RX,
|
||||||
|
.end = IRQ_UART2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_ERROR,
|
||||||
|
.end = IRQ_UART2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_TX,
|
||||||
|
.end = CH_UART2_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_RX,
|
||||||
|
.end = CH_UART2_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart2_peripherals[] = {
|
||||||
|
P_UART2_TX, P_UART2_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart2_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart2_resources),
|
||||||
|
.resource = bfin_uart2_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -151,6 +262,145 @@ static struct platform_device bfin_sir2_device = {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
unsigned short bfin_can_peripherals[] = {
|
unsigned short bfin_can_peripherals[] = {
|
||||||
P_CAN0_RX, P_CAN0_TX, 0
|
P_CAN0_RX, P_CAN0_TX, 0
|
||||||
|
@ -268,8 +518,8 @@ static const struct ad7879_platform_data bfin_ad7879_ts_info = {
|
||||||
.median = 2, /* do 8 measurements */
|
.median = 2, /* do 8 measurements */
|
||||||
.averaging = 1, /* take the average of 4 middle samples */
|
.averaging = 1, /* take the average of 4 middle samples */
|
||||||
.pen_down_acc_interval = 255, /* 9.4 ms */
|
.pen_down_acc_interval = 255, /* 9.4 ms */
|
||||||
.gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
|
.gpio_export = 1, /* Export GPIO to gpiolib */
|
||||||
.gpio_default = 1, /* During initialization set GPIO = HIGH */
|
.gpio_base = -1, /* Dynamic allocation */
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -284,9 +534,10 @@ static struct bfin5xx_spi_chip spi_ad7879_chip_info = {
|
||||||
#include <asm/bfin-lq035q1.h>
|
#include <asm/bfin-lq035q1.h>
|
||||||
|
|
||||||
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
|
||||||
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
.mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
|
||||||
.use_bl = 0, /* let something else control the LCD Blacklight */
|
.ppi_mode = USE_RGB565_16_BIT_PPI,
|
||||||
.gpio_bl = GPIO_PF7,
|
.use_bl = 0, /* let something else control the LCD Blacklight */
|
||||||
|
.gpio_bl = GPIO_PF7,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct resource bfin_lq035q1_resources[] = {
|
static struct resource bfin_lq035q1_resources[] = {
|
||||||
|
@ -622,7 +873,15 @@ static struct platform_device *cm_bf538_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
@ -648,6 +907,21 @@ static struct platform_device *cm_bf538_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
&bfin_can_device,
|
&bfin_can_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -683,3 +957,39 @@ static int __init ezkit_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(ezkit_init);
|
arch_initcall(ezkit_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezkit_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezkit_early_devices,
|
||||||
|
ARRAY_SIZE(ezkit_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -110,7 +110,8 @@
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PF0
|
#define GPIO_IRQ_BASE IRQ_PF0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PF15+1)
|
#define NR_MACH_IRQS (IRQ_PF15 + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
#define IVG7 7
|
#define IVG7 7
|
||||||
#define IVG8 8
|
#define IVG8 8
|
||||||
|
|
|
@ -127,44 +127,211 @@ static struct platform_device rtc_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_DLL,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_RBR+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_DLL,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_RBR+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART2
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02100,
|
.start = IRQ_UART1_RX,
|
||||||
.end = 0xFFC021FF,
|
.end = IRQ_UART1_RX+1,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART3
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC03100,
|
.start = IRQ_UART1_ERROR,
|
||||||
.end = 0xFFC031FF,
|
.end = IRQ_UART1_ERROR,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
{ /* CTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PE10,
|
||||||
|
.end = GPIO_PE10,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PE9,
|
||||||
|
.end = GPIO_PE9,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX,
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
P_UART1_RTS, P_UART1_CTS,
|
||||||
|
#endif
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
static struct resource bfin_uart2_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART2_DLL,
|
||||||
|
.end = UART2_RBR+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_RX,
|
||||||
|
.end = IRQ_UART2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_ERROR,
|
||||||
|
.end = IRQ_UART2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_TX,
|
||||||
|
.end = CH_UART2_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_RX,
|
||||||
|
.end = CH_UART2_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart2_peripherals[] = {
|
||||||
|
P_UART2_TX, P_UART2_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart2_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart2_resources),
|
||||||
|
.resource = bfin_uart2_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
static struct resource bfin_uart3_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART3_DLL,
|
||||||
|
.end = UART3_RBR+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART3_RX,
|
||||||
|
.end = IRQ_UART3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART3_ERROR,
|
||||||
|
.end = IRQ_UART3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART3_TX,
|
||||||
|
.end = CH_UART3_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART3_RX,
|
||||||
|
.end = CH_UART3_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART3_CTSRTS
|
||||||
|
{ /* CTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PB3,
|
||||||
|
.end = GPIO_PB3,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PB2,
|
||||||
|
.end = GPIO_PB2,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart3_peripherals[] = {
|
||||||
|
P_UART3_TX, P_UART3_RX,
|
||||||
|
#ifdef CONFIG_BFIN_UART3_CTSRTS
|
||||||
|
P_UART3_RTS, P_UART3_CTS,
|
||||||
|
#endif
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart3_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart3_resources),
|
||||||
|
.resource = bfin_uart3_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -359,6 +526,145 @@ static struct platform_device musb_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
||||||
static struct resource bfin_atapi_resources[] = {
|
static struct resource bfin_atapi_resources[] = {
|
||||||
{
|
{
|
||||||
|
@ -752,7 +1058,18 @@ static struct platform_device *cm_bf548_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
&bfin_uart3_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -782,6 +1099,21 @@ static struct platform_device *cm_bf548_devices[] __initdata = {
|
||||||
&musb_device,
|
&musb_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
#if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
|
||||||
&bfin_atapi_device,
|
&bfin_atapi_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -833,3 +1165,42 @@ static int __init cm_bf548_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(cm_bf548_init);
|
arch_initcall(cm_bf548_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf548_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
&bfin_uart3_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf548_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf548_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -232,44 +232,211 @@ static struct platform_device rtc_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART0
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = UART0_DLL,
|
||||||
.end = 0xFFC004FF,
|
.end = UART0_RBR+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_RX,
|
||||||
|
.end = IRQ_UART0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART0_ERROR,
|
||||||
|
.end = IRQ_UART0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_TX,
|
||||||
|
.end = CH_UART0_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART0_RX,
|
||||||
|
.end = CH_UART0_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART1
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
static struct resource bfin_uart1_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC02000,
|
.start = UART1_DLL,
|
||||||
.end = 0xFFC020FF,
|
.end = UART1_RBR+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART2
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC02100,
|
.start = IRQ_UART1_RX,
|
||||||
.end = 0xFFC021FF,
|
.end = IRQ_UART1_RX+1,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
},
|
},
|
||||||
#endif
|
|
||||||
#ifdef CONFIG_SERIAL_BFIN_UART3
|
|
||||||
{
|
{
|
||||||
.start = 0xFFC03100,
|
.start = IRQ_UART1_ERROR,
|
||||||
.end = 0xFFC031FF,
|
.end = IRQ_UART1_ERROR,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_TX,
|
||||||
|
.end = CH_UART1_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART1_RX,
|
||||||
|
.end = CH_UART1_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
{ /* CTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PE10,
|
||||||
|
.end = GPIO_PE10,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PE9,
|
||||||
|
.end = GPIO_PE9,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart1_peripherals[] = {
|
||||||
|
P_UART1_TX, P_UART1_RX,
|
||||||
|
#ifdef CONFIG_BFIN_UART1_CTSRTS
|
||||||
|
P_UART1_RTS, P_UART1_CTS,
|
||||||
|
#endif
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart1_device = {
|
||||||
.name = "bfin-uart",
|
.name = "bfin-uart",
|
||||||
.id = 1,
|
.id = 1,
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
.num_resources = ARRAY_SIZE(bfin_uart1_resources),
|
||||||
.resource = bfin_uart_resources,
|
.resource = bfin_uart1_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
static struct resource bfin_uart2_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART2_DLL,
|
||||||
|
.end = UART2_RBR+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_RX,
|
||||||
|
.end = IRQ_UART2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART2_ERROR,
|
||||||
|
.end = IRQ_UART2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_TX,
|
||||||
|
.end = CH_UART2_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART2_RX,
|
||||||
|
.end = CH_UART2_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart2_peripherals[] = {
|
||||||
|
P_UART2_TX, P_UART2_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart2_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart2_resources),
|
||||||
|
.resource = bfin_uart2_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
static struct resource bfin_uart3_resources[] = {
|
||||||
|
{
|
||||||
|
.start = UART3_DLL,
|
||||||
|
.end = UART3_RBR+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART3_RX,
|
||||||
|
.end = IRQ_UART3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART3_ERROR,
|
||||||
|
.end = IRQ_UART3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART3_TX,
|
||||||
|
.end = CH_UART3_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART3_RX,
|
||||||
|
.end = CH_UART3_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
#ifdef CONFIG_BFIN_UART3_CTSRTS
|
||||||
|
{ /* CTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PB3,
|
||||||
|
.end = GPIO_PB3,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
{ /* RTS pin -- 0 means not supported */
|
||||||
|
.start = GPIO_PB2,
|
||||||
|
.end = GPIO_PB2,
|
||||||
|
.flags = IORESOURCE_IO,
|
||||||
|
},
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart3_peripherals[] = {
|
||||||
|
P_UART3_TX, P_UART3_RX,
|
||||||
|
#ifdef CONFIG_BFIN_UART3_CTSRTS
|
||||||
|
P_UART3_RTS, P_UART3_CTS,
|
||||||
|
#endif
|
||||||
|
0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart3_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart3_resources),
|
||||||
|
.resource = bfin_uart3_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
|
@ -464,6 +631,145 @@ static struct platform_device musb_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
static struct resource bfin_sport0_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT0_TCR1,
|
||||||
|
.end = SPORT0_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_RX,
|
||||||
|
.end = IRQ_SPORT0_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT0_ERROR,
|
||||||
|
.end = IRQ_SPORT0_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport0_peripherals[] = {
|
||||||
|
P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS,
|
||||||
|
P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport0_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport0_uart_resources),
|
||||||
|
.resource = bfin_sport0_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
static struct resource bfin_sport1_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT1_TCR1,
|
||||||
|
.end = SPORT1_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_RX,
|
||||||
|
.end = IRQ_SPORT1_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT1_ERROR,
|
||||||
|
.end = IRQ_SPORT1_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport1_peripherals[] = {
|
||||||
|
P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS,
|
||||||
|
P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport1_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 1,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport1_uart_resources),
|
||||||
|
.resource = bfin_sport1_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport1_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
static struct resource bfin_sport2_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT2_TCR1,
|
||||||
|
.end = SPORT2_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_RX,
|
||||||
|
.end = IRQ_SPORT2_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT2_ERROR,
|
||||||
|
.end = IRQ_SPORT2_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport2_peripherals[] = {
|
||||||
|
P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS,
|
||||||
|
P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport2_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 2,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport2_uart_resources),
|
||||||
|
.resource = bfin_sport2_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport2_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
static struct resource bfin_sport3_uart_resources[] = {
|
||||||
|
{
|
||||||
|
.start = SPORT3_TCR1,
|
||||||
|
.end = SPORT3_MRCS3+4,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_RX,
|
||||||
|
.end = IRQ_SPORT3_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_SPORT3_ERROR,
|
||||||
|
.end = IRQ_SPORT3_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_sport3_peripherals[] = {
|
||||||
|
P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS,
|
||||||
|
P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_sport3_uart_device = {
|
||||||
|
.name = "bfin-sport-uart",
|
||||||
|
.id = 3,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_sport3_uart_resources),
|
||||||
|
.resource = bfin_sport3_uart_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_sport3_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
unsigned short bfin_can_peripherals[] = {
|
unsigned short bfin_can_peripherals[] = {
|
||||||
P_CAN0_RX, P_CAN0_TX, 0
|
P_CAN0_RX, P_CAN0_TX, 0
|
||||||
|
@ -657,8 +963,8 @@ static struct bfin5xx_spi_chip spi_flash_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -714,8 +1020,8 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
.mode = SPI_MODE_3,
|
.mode = SPI_MODE_3,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -951,6 +1257,30 @@ static struct platform_device bfin_dpmc = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
static struct platform_device bfin_i2s = {
|
||||||
|
.name = "bfin-i2s",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
static struct platform_device bfin_tdm = {
|
||||||
|
.name = "bfin-tdm",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
static struct platform_device bfin_ac97 = {
|
||||||
|
.name = "bfin-ac97",
|
||||||
|
.id = CONFIG_SND_BF5XX_SPORT_NUM,
|
||||||
|
/* TODO: add platform data here */
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct platform_device *ezkit_devices[] __initdata = {
|
static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
|
|
||||||
&bfin_dpmc,
|
&bfin_dpmc,
|
||||||
|
@ -960,7 +1290,18 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
&bfin_uart3_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -994,6 +1335,21 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
&bfin_isp1760_device,
|
&bfin_isp1760_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
#if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE)
|
||||||
&bfin_can_device,
|
&bfin_can_device,
|
||||||
#endif
|
#endif
|
||||||
|
@ -1037,6 +1393,18 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
#if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
|
||||||
&ezkit_flash_device,
|
&ezkit_flash_device,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
|
||||||
|
&bfin_i2s,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
|
||||||
|
&bfin_tdm,
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
|
||||||
|
&bfin_ac97,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init ezkit_init(void)
|
static int __init ezkit_init(void)
|
||||||
|
@ -1058,3 +1426,42 @@ static int __init ezkit_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(ezkit_init);
|
arch_initcall(ezkit_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezkit_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART1
|
||||||
|
&bfin_uart1_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART2
|
||||||
|
&bfin_uart2_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART3
|
||||||
|
&bfin_uart3_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT0_UART
|
||||||
|
&bfin_sport0_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT1_UART
|
||||||
|
&bfin_sport1_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT2_UART
|
||||||
|
&bfin_sport2_uart_device,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_SPORT3_UART
|
||||||
|
&bfin_sport3_uart_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezkit_early_devices,
|
||||||
|
ARRAY_SIZE(ezkit_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -317,7 +317,8 @@ Events (highest priority) EMU 0
|
||||||
|
|
||||||
#define GPIO_IRQ_BASE IRQ_PA0
|
#define GPIO_IRQ_BASE IRQ_PA0
|
||||||
|
|
||||||
#define NR_IRQS (IRQ_PJ15+1)
|
#define NR_MACH_IRQS (IRQ_PJ15 + 1)
|
||||||
|
#define NR_IRQS (NR_MACH_IRQS + NR_SPARE_IRQS)
|
||||||
|
|
||||||
/* For compatibility reasons with existing code */
|
/* For compatibility reasons with existing code */
|
||||||
|
|
||||||
|
|
|
@ -6,3 +6,4 @@ obj-y := ints-priority.o dma.o
|
||||||
|
|
||||||
obj-$(CONFIG_BF561_COREB) += coreb.o
|
obj-$(CONFIG_BF561_COREB) += coreb.o
|
||||||
obj-$(CONFIG_SMP) += smp.o secondary.o atomic.o
|
obj-$(CONFIG_SMP) += smp.o secondary.o atomic.o
|
||||||
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
||||||
|
|
|
@ -176,7 +176,7 @@ static struct resource smsc911x_resources[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct smsc911x_platform_config smsc911x_config = {
|
static struct smsc911x_platform_config smsc911x_config = {
|
||||||
.flags = SMSC911X_USE_32BIT,
|
.flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
|
||||||
.irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
|
.irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
|
||||||
.irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
|
.irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN,
|
||||||
.phy_interface = PHY_INTERFACE_MODE_MII,
|
.phy_interface = PHY_INTERFACE_MODE_MII,
|
||||||
|
|
|
@ -72,7 +72,7 @@ static struct bfin5xx_spi_chip spi_adc_chip_info = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -111,7 +111,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -305,20 +305,49 @@ static struct platform_device isp1362_hcd_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_RX,
|
||||||
|
.end = IRQ_UART_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_ERROR,
|
||||||
|
.end = IRQ_UART_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_TX,
|
||||||
|
.end = CH_UART_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_RX,
|
||||||
|
.end = CH_UART_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -463,7 +492,9 @@ static struct platform_device *cm_bf561_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -516,3 +547,18 @@ static int __init cm_bf561_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(cm_bf561_init);
|
arch_initcall(cm_bf561_init);
|
||||||
|
|
||||||
|
static struct platform_device *cm_bf561_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(cm_bf561_early_devices,
|
||||||
|
ARRAY_SIZE(cm_bf561_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -160,20 +160,49 @@ static struct platform_device smc91x_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
static struct resource bfin_uart_resources[] = {
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
{
|
{
|
||||||
.start = 0xFFC00400,
|
.start = BFIN_UART_THR,
|
||||||
.end = 0xFFC004FF,
|
.end = BFIN_UART_GCTL+2,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_RX,
|
||||||
|
.end = IRQ_UART_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_ERROR,
|
||||||
|
.end = IRQ_UART_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_TX,
|
||||||
|
.end = CH_UART_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_RX,
|
||||||
|
.end = CH_UART_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device bfin_uart_device = {
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
.name = "bfin-uart",
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
.id = 1,
|
|
||||||
.num_resources = ARRAY_SIZE(bfin_uart_resources),
|
|
||||||
.resource = bfin_uart_resources,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -245,8 +274,8 @@ static struct platform_device ezkit_flash_device = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
.enable_dma = 0,
|
.enable_dma = 0,
|
||||||
.bits_per_word = 16,
|
.bits_per_word = 16,
|
||||||
|
@ -299,8 +328,8 @@ static struct platform_device bfin_spi0_device = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD183X) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD183X_MODULE)
|
||||||
{
|
{
|
||||||
.modalias = "ad1836",
|
.modalias = "ad1836",
|
||||||
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
|
||||||
|
@ -412,7 +441,9 @@ static struct platform_device *ezkit_devices[] __initdata = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
&bfin_uart_device,
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
|
@ -458,3 +489,18 @@ static int __init ezkit_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(ezkit_init);
|
arch_initcall(ezkit_init);
|
||||||
|
|
||||||
|
static struct platform_device *ezkit_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(ezkit_early_devices,
|
||||||
|
ARRAY_SIZE(ezkit_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -42,6 +42,52 @@ static struct platform_device smc91x_device = {
|
||||||
.resource = smc91x_resources,
|
.resource = smc91x_resources,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
static struct resource bfin_uart0_resources[] = {
|
||||||
|
{
|
||||||
|
.start = BFIN_UART_THR,
|
||||||
|
.end = BFIN_UART_GCTL+2,
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_RX,
|
||||||
|
.end = IRQ_UART_RX+1,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = IRQ_UART_ERROR,
|
||||||
|
.end = IRQ_UART_ERROR,
|
||||||
|
.flags = IORESOURCE_IRQ,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_TX,
|
||||||
|
.end = CH_UART_TX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
.start = CH_UART_RX,
|
||||||
|
.end = CH_UART_RX,
|
||||||
|
.flags = IORESOURCE_DMA,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
unsigned short bfin_uart0_peripherals[] = {
|
||||||
|
P_UART0_TX, P_UART0_RX, 0
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device bfin_uart0_device = {
|
||||||
|
.name = "bfin-uart",
|
||||||
|
.id = 0,
|
||||||
|
.num_resources = ARRAY_SIZE(bfin_uart0_resources),
|
||||||
|
.resource = bfin_uart0_resources,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &bfin_uart0_peripherals, /* Passed to driver */
|
||||||
|
},
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
static struct resource bfin_sir0_resources[] = {
|
static struct resource bfin_sir0_resources[] = {
|
||||||
|
@ -73,6 +119,13 @@ static struct platform_device bfin_sir0_device = {
|
||||||
|
|
||||||
static struct platform_device *tepla_devices[] __initdata = {
|
static struct platform_device *tepla_devices[] __initdata = {
|
||||||
&smc91x_device,
|
&smc91x_device,
|
||||||
|
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
|
||||||
#ifdef CONFIG_BFIN_SIR0
|
#ifdef CONFIG_BFIN_SIR0
|
||||||
&bfin_sir0_device,
|
&bfin_sir0_device,
|
||||||
|
@ -87,3 +140,18 @@ static int __init tepla_init(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
arch_initcall(tepla_init);
|
arch_initcall(tepla_init);
|
||||||
|
|
||||||
|
static struct platform_device *tepla_early_devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
|
||||||
|
#ifdef CONFIG_SERIAL_BFIN_UART0
|
||||||
|
&bfin_uart0_device,
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
void __init native_machine_early_platform_add_devices(void)
|
||||||
|
{
|
||||||
|
printk(KERN_INFO "register early platform devices\n");
|
||||||
|
early_platform_add_devices(tepla_early_devices,
|
||||||
|
ARRAY_SIZE(tepla_early_devices));
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2007-2009 Analog Devices Inc.
|
||||||
|
* Graff Yang <graf.yang@analog.com>
|
||||||
|
*
|
||||||
|
* Licensed under the GPL-2 or later.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <asm/blackfin.h>
|
||||||
|
#include <asm/smp.h>
|
||||||
|
#define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
|
||||||
|
|
||||||
|
int hotplug_coreb;
|
||||||
|
|
||||||
|
void platform_cpu_die(void)
|
||||||
|
{
|
||||||
|
unsigned long iwr[2] = {0, 0};
|
||||||
|
unsigned long bank = SIC_SYSIRQ(IRQ_SUPPLE_0) / 32;
|
||||||
|
unsigned long bit = 1 << (SIC_SYSIRQ(IRQ_SUPPLE_0) % 32);
|
||||||
|
|
||||||
|
hotplug_coreb = 1;
|
||||||
|
|
||||||
|
iwr[bank] = bit;
|
||||||
|
|
||||||
|
/* disable core timer */
|
||||||
|
bfin_write_TCNTL(0);
|
||||||
|
|
||||||
|
/* clear ipi interrupt IRQ_SUPPLE_0 */
|
||||||
|
bfin_write_SICB_SYSCR(bfin_read_SICB_SYSCR() | (1 << (10 + 1)));
|
||||||
|
SSYNC();
|
||||||
|
|
||||||
|
coreb_sleep(iwr[0], iwr[1], 0);
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue