-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: Ingenic: Add YSH & ATIL CU Neo board support.
Add a device tree and a defconfig for the Ingenic X1830 based YSH & ATIL CU Neo board. Tested-by: 周正 (Zhou Zheng) <sernia.zhou@foxmail.com> Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
- Loading branch information
周琰杰 (Zhou Yanjie)
authored and
Thomas Bogendoerfer
committed
Jul 16, 2020
1 parent
1c3dea3
commit 56d47fb
Showing
4 changed files
with
296 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/dts-v1/; | ||
|
||
#include "x1830.dtsi" | ||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/clock/ingenic,tcu.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
|
||
/ { | ||
compatible = "yna,cu1830-neo", "ingenic,x1830"; | ||
model = "YSH & ATIL General Board CU1830-Neo"; | ||
|
||
aliases { | ||
serial1 = &uart1; | ||
}; | ||
|
||
chosen { | ||
stdout-path = "serial1:115200n8"; | ||
}; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0x0 0x08000000>; | ||
}; | ||
|
||
leds { | ||
compatible = "gpio-leds"; | ||
led-0 { | ||
gpios = <&gpc 17 GPIO_ACTIVE_HIGH>; | ||
linux,default-trigger = "mmc0"; | ||
}; | ||
}; | ||
|
||
wlan_pwrseq: msc1-pwrseq { | ||
compatible = "mmc-pwrseq-simple"; | ||
|
||
reset-gpios = <&gpc 13 GPIO_ACTIVE_LOW>; | ||
post-power-on-delay-ms = <200>; | ||
}; | ||
}; | ||
|
||
&exclk { | ||
clock-frequency = <24000000>; | ||
}; | ||
|
||
&tcu { | ||
/* 1500 kHz for the system timer and clocksource */ | ||
assigned-clocks = <&tcu TCU_CLK_TIMER0>, <&tcu TCU_CLK_TIMER2>; | ||
assigned-clock-rates = <1500000>, <1500000>; | ||
|
||
/* Use channel #0 for the system timer channel #2 for the clocksource */ | ||
ingenic,pwm-channels-mask = <0xfa>; | ||
}; | ||
|
||
&uart1 { | ||
status = "okay"; | ||
|
||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pins_uart1>; | ||
}; | ||
|
||
&i2c0 { | ||
status = "okay"; | ||
|
||
clock-frequency = <400000>; | ||
|
||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pins_i2c0>; | ||
|
||
ads7830: adc@48 { | ||
compatible = "ti,ads7830"; | ||
reg = <0x48>; | ||
}; | ||
}; | ||
|
||
&msc0 { | ||
status = "okay"; | ||
|
||
bus-width = <4>; | ||
max-frequency = <50000000>; | ||
|
||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pins_msc0>; | ||
|
||
non-removable; | ||
}; | ||
|
||
&msc1 { | ||
status = "okay"; | ||
|
||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
bus-width = <4>; | ||
max-frequency = <50000000>; | ||
|
||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pins_msc1>; | ||
|
||
non-removable; | ||
|
||
mmc-pwrseq = <&wlan_pwrseq>; | ||
|
||
ap6212a: wifi@1 { | ||
compatible = "brcm,bcm4329-fmac"; | ||
reg = <1>; | ||
|
||
interrupt-parent = <&gpc>; | ||
interrupts = <25 IRQ_TYPE_EDGE_FALLING>; | ||
interrupt-names = "host-wake"; | ||
|
||
brcm,drive-strength = <10>; | ||
}; | ||
}; | ||
|
||
&mac { | ||
status = "okay"; | ||
|
||
phy-mode = "rmii"; | ||
phy-handle = <&ip101gr>; | ||
|
||
pinctrl-names = "default"; | ||
pinctrl-0 = <&pins_mac>; | ||
|
||
snps,reset-gpio = <&gpb 28 GPIO_ACTIVE_LOW>; /* PB28 */ | ||
snps,reset-active-low; | ||
snps,reset-delays-us = <0 10000 30000>; | ||
}; | ||
|
||
&mdio { | ||
status = "okay"; | ||
|
||
ip101gr: ethernet-phy@0 { | ||
compatible = "ethernet-phy-id0243.0c54", "ethernet-phy-ieee802.3-c22"; | ||
reg = <0>; | ||
}; | ||
}; | ||
|
||
&pinctrl { | ||
pins_uart1: uart1 { | ||
function = "uart1"; | ||
groups = "uart1-data"; | ||
bias-pull-up; | ||
}; | ||
|
||
pins_i2c0: i2c0 { | ||
function = "i2c0"; | ||
groups = "i2c0-data"; | ||
bias-pull-up; | ||
}; | ||
|
||
pins_msc0: msc0 { | ||
function = "mmc0"; | ||
groups = "mmc0-1bit", "mmc0-4bit"; | ||
bias-disable; | ||
}; | ||
|
||
pins_msc1: msc1 { | ||
function = "mmc1"; | ||
groups = "mmc1-1bit", "mmc1-4bit"; | ||
bias-disable; | ||
}; | ||
|
||
pins_mac: mac { | ||
function = "mac"; | ||
groups = "mac"; | ||
bias-disable; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
CONFIG_LOCALVERSION_AUTO=y | ||
CONFIG_KERNEL_GZIP=y | ||
CONFIG_SYSVIPC=y | ||
CONFIG_NO_HZ_IDLE=y | ||
CONFIG_HIGH_RES_TIMERS=y | ||
CONFIG_PREEMPT=y | ||
CONFIG_IKCONFIG=y | ||
CONFIG_IKCONFIG_PROC=y | ||
CONFIG_LOG_BUF_SHIFT=14 | ||
CONFIG_CGROUPS=y | ||
CONFIG_MEMCG=y | ||
CONFIG_MEMCG_KMEM=y | ||
CONFIG_CGROUP_SCHED=y | ||
CONFIG_CGROUP_FREEZER=y | ||
CONFIG_CGROUP_DEVICE=y | ||
CONFIG_CGROUP_CPUACCT=y | ||
CONFIG_NAMESPACES=y | ||
CONFIG_USER_NS=y | ||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y | ||
CONFIG_KALLSYMS_ALL=y | ||
CONFIG_EMBEDDED=y | ||
# CONFIG_VM_EVENT_COUNTERS is not set | ||
# CONFIG_COMPAT_BRK is not set | ||
CONFIG_SLAB=y | ||
CONFIG_MACH_INGENIC=y | ||
CONFIG_X1830_CU1830_NEO=y | ||
CONFIG_HIGHMEM=y | ||
CONFIG_HZ_100=y | ||
# CONFIG_SECCOMP is not set | ||
# CONFIG_SUSPEND is not set | ||
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | ||
# CONFIG_COMPACTION is not set | ||
CONFIG_CMA=y | ||
CONFIG_CMA_AREAS=7 | ||
CONFIG_NET=y | ||
CONFIG_PACKET=y | ||
CONFIG_UNIX=y | ||
CONFIG_INET=y | ||
CONFIG_CFG80211=y | ||
CONFIG_UEVENT_HELPER=y | ||
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | ||
CONFIG_DEVTMPFS=y | ||
# CONFIG_FW_LOADER is not set | ||
# CONFIG_ALLOW_DEV_COREDUMP is not set | ||
CONFIG_MD=y | ||
CONFIG_BLK_DEV_MD=y | ||
CONFIG_BLK_DEV_DM=y | ||
CONFIG_NETDEVICES=y | ||
CONFIG_STMMAC_ETH=y | ||
CONFIG_ICPLUS_PHY=y | ||
CONFIG_BRCMFMAC=y | ||
# CONFIG_INPUT_MOUSEDEV is not set | ||
# CONFIG_INPUT_KEYBOARD is not set | ||
# CONFIG_INPUT_MOUSE is not set | ||
# CONFIG_SERIO is not set | ||
CONFIG_VT_HW_CONSOLE_BINDING=y | ||
CONFIG_LEGACY_PTY_COUNT=2 | ||
CONFIG_SERIAL_EARLYCON=y | ||
CONFIG_SERIAL_8250=y | ||
CONFIG_SERIAL_8250_CONSOLE=y | ||
CONFIG_SERIAL_8250_NR_UARTS=2 | ||
CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | ||
CONFIG_SERIAL_8250_INGENIC=y | ||
CONFIG_SERIAL_OF_PLATFORM=y | ||
# CONFIG_HW_RANDOM is not set | ||
CONFIG_I2C=y | ||
CONFIG_I2C_JZ4780=y | ||
CONFIG_GPIO_SYSFS=y | ||
CONFIG_SENSORS_ADS7828=y | ||
CONFIG_WATCHDOG=y | ||
CONFIG_JZ4740_WDT=y | ||
# CONFIG_LCD_CLASS_DEVICE is not set | ||
# CONFIG_BACKLIGHT_CLASS_DEVICE is not set | ||
# CONFIG_VGA_CONSOLE is not set | ||
# CONFIG_HID is not set | ||
# CONFIG_USB_SUPPORT is not set | ||
CONFIG_MMC=y | ||
CONFIG_MMC_JZ4740=y | ||
CONFIG_NEW_LEDS=y | ||
CONFIG_LEDS_CLASS=y | ||
CONFIG_LEDS_GPIO=y | ||
CONFIG_LEDS_TRIGGERS=y | ||
CONFIG_RTC_CLASS=y | ||
CONFIG_RTC_DRV_JZ4740=y | ||
CONFIG_DMADEVICES=y | ||
CONFIG_DMA_JZ4780=y | ||
# CONFIG_IOMMU_SUPPORT is not set | ||
CONFIG_NVMEM=y | ||
CONFIG_NVMEM_SYSFS=y | ||
CONFIG_EXT4_FS=y | ||
# CONFIG_DNOTIFY is not set | ||
CONFIG_AUTOFS_FS=y | ||
CONFIG_PROC_KCORE=y | ||
# CONFIG_PROC_PAGE_MONITOR is not set | ||
CONFIG_TMPFS=y | ||
CONFIG_CONFIGFS_FS=y | ||
CONFIG_NFS_FS=y | ||
CONFIG_NLS=y | ||
CONFIG_NLS_CODEPAGE_936=y | ||
CONFIG_NLS_CODEPAGE_950=y | ||
CONFIG_NLS_ASCII=y | ||
CONFIG_NLS_ISO8859_1=y | ||
CONFIG_NLS_UTF8=y | ||
CONFIG_CRYPTO_ECHAINIV=y | ||
CONFIG_CRYPTO_AES=y | ||
CONFIG_CRYPTO_DEFLATE=y | ||
CONFIG_CRYPTO_LZO=y | ||
CONFIG_PRINTK_TIME=y | ||
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=15 | ||
CONFIG_CONSOLE_LOGLEVEL_QUIET=15 | ||
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=7 | ||
CONFIG_DEBUG_INFO=y | ||
CONFIG_STRIP_ASM_SYMS=y | ||
CONFIG_DEBUG_FS=y | ||
CONFIG_MAGIC_SYSRQ=y | ||
CONFIG_PANIC_ON_OOPS=y | ||
CONFIG_PANIC_TIMEOUT=10 | ||
# CONFIG_SCHED_DEBUG is not set | ||
# CONFIG_DEBUG_PREEMPT is not set | ||
CONFIG_STACKTRACE=y | ||
# CONFIG_FTRACE is not set | ||
CONFIG_CMDLINE_BOOL=y | ||
CONFIG_CMDLINE="earlycon clk_ignore_unused" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters