mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
sunxi: add support for Nintendo NES Classic Edition
Add board support for sun8i_r16 Nintendo NES Classic edition. Signed-off-by: FUKAUMI Naoki <naobsd@gmail.com> [jagan: Add commit message body] Signed-off-by: Jagan Teki <jagan@openedev.com> Reviewed-by: Jagan Teki <jagan@openedev.com>
This commit is contained in:
parent
11777a5ea7
commit
5782954c2b
4 changed files with 93 additions and 0 deletions
|
@ -260,6 +260,7 @@ dtb-$(CONFIG_MACH_SUN8I_A33) += \
|
||||||
sun8i-a33-olinuxino.dtb \
|
sun8i-a33-olinuxino.dtb \
|
||||||
sun8i-a33-q8-tablet.dtb \
|
sun8i-a33-q8-tablet.dtb \
|
||||||
sun8i-a33-sinlinx-sina33.dtb \
|
sun8i-a33-sinlinx-sina33.dtb \
|
||||||
|
sun8i-r16-nintendo-nes-classic-edition.dtb \
|
||||||
sun8i-r16-parrot.dtb
|
sun8i-r16-parrot.dtb
|
||||||
dtb-$(CONFIG_MACH_SUN8I_A83T) += \
|
dtb-$(CONFIG_MACH_SUN8I_A83T) += \
|
||||||
sun8i-a83t-allwinner-h8homlet-v2.dtb \
|
sun8i-a83t-allwinner-h8homlet-v2.dtb \
|
||||||
|
|
63
arch/arm/dts/sun8i-r16-nintendo-nes-classic-edition.dts
Normal file
63
arch/arm/dts/sun8i-r16-nintendo-nes-classic-edition.dts
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2016 FUKAUMI Naoki <naobsd@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is dual-licensed: you can use it either under the terms
|
||||||
|
* of the GPL or the X11 license, at your option. Note that this dual
|
||||||
|
* licensing only applies to this file, and not this project as a
|
||||||
|
* whole.
|
||||||
|
*
|
||||||
|
* a) This file is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License as
|
||||||
|
* published by the Free Software Foundation; either version 2 of the
|
||||||
|
* License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This file is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* Or, alternatively,
|
||||||
|
*
|
||||||
|
* b) Permission is hereby granted, free of charge, to any person
|
||||||
|
* obtaining a copy of this software and associated documentation
|
||||||
|
* files (the "Software"), to deal in the Software without
|
||||||
|
* restriction, including without limitation the rights to use,
|
||||||
|
* copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
* sell copies of the Software, and to permit persons to whom the
|
||||||
|
* Software is furnished to do so, subject to the following
|
||||||
|
* conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be
|
||||||
|
* included in all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||||
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
* OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/dts-v1/;
|
||||||
|
#include "sun8i-a33.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "Nintendo NES Classic Edition";
|
||||||
|
compatible = "nintendo,nes-classic-edition", "allwinner,sun8i-a33";
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
serial0 = &uart0;
|
||||||
|
};
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
stdout-path = "serial0:115200n8";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&uart0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&uart0_pins_a>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
|
@ -232,6 +232,11 @@ M: Jelle van der Waa <jelle@vdwaa.nl>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: configs/nanopi_neo_defconfig
|
F: configs/nanopi_neo_defconfig
|
||||||
|
|
||||||
|
NINTENDO NES CLASSIC EDITION BOARD
|
||||||
|
M: FUKAUMI Naoki <naobsd@gmail.com>
|
||||||
|
S: Maintained
|
||||||
|
F: configs/Nintendo_NES_Classic_Edition_defconfig
|
||||||
|
|
||||||
R16 EVB PARROT BOARD
|
R16 EVB PARROT BOARD
|
||||||
M: Quentin Schulz <quentin.schulz@free-electrons.com>
|
M: Quentin Schulz <quentin.schulz@free-electrons.com>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
24
configs/Nintendo_NES_Classic_Edition_defconfig
Normal file
24
configs/Nintendo_NES_Classic_Edition_defconfig
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_ARCH_SUNXI=y
|
||||||
|
# CONFIG_SPL_MMC_SUPPORT is not set
|
||||||
|
CONFIG_MACH_SUN8I_A33=y
|
||||||
|
CONFIG_DRAM_CLK=600
|
||||||
|
CONFIG_DRAM_ZQ=15291
|
||||||
|
CONFIG_DRAM_ODT_EN=y
|
||||||
|
# CONFIG_MMC is not set
|
||||||
|
CONFIG_USB0_VBUS_DET="AXP0-VBUS-DETECT"
|
||||||
|
CONFIG_AXP_GPIO=y
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="sun8i-r16-nintendo-nes-classic-edition"
|
||||||
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
||||||
|
CONFIG_SPL=y
|
||||||
|
# CONFIG_CMD_IMLS is not set
|
||||||
|
# CONFIG_CMD_FLASH is not set
|
||||||
|
# CONFIG_CMD_FPGA is not set
|
||||||
|
CONFIG_AXP_DLDO1_VOLT=3300
|
||||||
|
CONFIG_AXP_ELDO2_VOLT=1800
|
||||||
|
CONFIG_USB_MUSB_GADGET=y
|
||||||
|
CONFIG_USB_GADGET=y
|
||||||
|
CONFIG_USB_GADGET_DOWNLOAD=y
|
||||||
|
CONFIG_G_DNL_MANUFACTURER="Allwinner Technology"
|
||||||
|
CONFIG_G_DNL_VENDOR_NUM=0x1f3a
|
||||||
|
CONFIG_G_DNL_PRODUCT_NUM=0x1010
|
Loading…
Reference in a new issue