Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nanopi2 #330

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,261 changes: 3,261 additions & 0 deletions arch/arm/configs/nanopi_defconfig

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions arch/arm/mach-s3c24xx/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,28 @@ config S3C2416_SETUP_SDHCI_GPIO

comment "S3C2416 Boards"

config WL_WEXT
bool
select WIRELESS_EXT
select WEXT_SPY
select WEXT_PRIV
select AVERAGE

config MACH_MINI2451
bool "MINI2451"
select S3C_DEV_FB
select S3C_DEV_HSMMC
select S3C_DEV_HSMMC1
select S3C_DEV_NAND
select S3C_DEV_USB_HOST
select S3C2416_SETUP_SDHCI
select S3C2443_SETUP_SPI
select S3C64XX_DEV_SPI0
select OID_REGISTRY
select WL_WEXT if !(BCMDHD || BCM4336)
help
Say Y here if you are using an FriendlyARM MINI2451

config MACH_SMDK2416
bool "SMDK2416"
select S3C2416_SETUP_SDHCI
Expand Down Expand Up @@ -593,3 +615,12 @@ config PM_H1940
endmenu # SAMSUNG S3C24XX SoCs Support

endif # ARCH_S3C24XX

comment "Connectivity Feature"

config BT_BCM20710
bool "Enable BCM20710 driver"
depends on BT
default n
help
Adds RFKILL driver for Broadcom BCM20710 chipset
3 changes: 3 additions & 0 deletions arch/arm/mach-s3c24xx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ obj-$(CONFIG_MACH_JIVE) += mach-jive.o
obj-$(CONFIG_MACH_SMDK2413) += mach-smdk2413.o
obj-$(CONFIG_MACH_VSTMS) += mach-vstms.o

obj-$(CONFIG_MACH_MINI2451) += mach-mini2451.o mini2451-lcds.o
obj-$(CONFIG_BT_BCM20710) += board-bluetooth-bcm20710.o

obj-$(CONFIG_MACH_SMDK2416) += mach-smdk2416.o
obj-$(CONFIG_MACH_S3C2416_DT) += mach-s3c2416-dt.o

Expand Down
Loading