1d0ea0692a
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as publishhed by the free software foundation extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 48 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Alexios Zavras <alexios.zavras@intel.com> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190530000436.292339952@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
85 lines
1.4 KiB
Plaintext
85 lines
1.4 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/**
|
|
* dts file for Hisilicon D02 Development Board
|
|
*
|
|
* Copyright (C) 2014,2015 Hisilicon Ltd.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
#include "hip05.dtsi"
|
|
|
|
/ {
|
|
model = "Hisilicon Hip05 D02 Development Board";
|
|
compatible = "hisilicon,hip05-d02";
|
|
|
|
memory@0 {
|
|
device_type = "memory";
|
|
reg = <0x0 0x00000000 0x0 0x80000000>;
|
|
};
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
gpio_keys {
|
|
compatible = "gpio-keys";
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
pwrbutton {
|
|
label = "Power Button";
|
|
gpios = <&porta 8 GPIO_ACTIVE_LOW>;
|
|
linux,code = <116>;
|
|
debounce-interval = <0>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&uart0 {
|
|
status = "ok";
|
|
};
|
|
|
|
&peri_gpio0 {
|
|
status = "ok";
|
|
};
|
|
|
|
&lbc {
|
|
status = "ok";
|
|
#address-cells = <2>;
|
|
#size-cells = <1>;
|
|
ranges = <0 0 0x0 0x90000000 0x08000000>,
|
|
<1 0 0x0 0x98000000 0x08000000>;
|
|
|
|
nor-flash@0,0 {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "numonyx,js28f00a", "cfi-flash";
|
|
reg = <0 0x0 0x08000000>;
|
|
bank-width = <2>;
|
|
/* The three parts may not used */
|
|
partition@0 {
|
|
label = "BIOS";
|
|
reg = <0x0 0x300000>;
|
|
};
|
|
partition@300000 {
|
|
label = "Linux";
|
|
reg = <0x300000 0xa00000>;
|
|
};
|
|
partition@1000000 {
|
|
label = "Rootfs";
|
|
reg = <0x01000000 0x02000000>;
|
|
};
|
|
};
|
|
|
|
cpld@1,0 {
|
|
compatible = "hisilicon,hip05-cpld";
|
|
reg = <1 0x0 0x100>;
|
|
};
|
|
};
|