From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heiko =?ISO-8859-1?Q?St=FCbner?= Date: Fri, 22 Jul 2016 23:54:33 +0200 Subject: [U-Boot] [PATCH v2 7/8] rockchip: rk3188: add core support In-Reply-To: <1469224272-17220-8-git-send-email-heiko@sntech.de> References: <1469224272-17220-1-git-send-email-heiko@sntech.de> <1469224272-17220-8-git-send-email-heiko@sntech.de> Message-ID: <3453180.SlQqvEWZDG@diego> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am Freitag, 22. Juli 2016, 23:51:11 schrieb Heiko Stuebner: > Add the core architecture code for the rk3188. > It doesn't support the SPL yet, as because of some > unknown error it doesn't start yet. > > Signed-off-by: Heiko Stuebner > --- > arch/arm/dts/rk3188.dtsi | 631 > ++++++++++++++++++++++++++ arch/arm/dts/rk3xxx.dtsi | > 431 ++++++++++++++++++ arch/arm/mach-rockchip/Kconfig | 11 > + > arch/arm/mach-rockchip/Makefile | 1 + > arch/arm/mach-rockchip/rk3188/Kconfig | 9 + > arch/arm/mach-rockchip/rk3188/Makefile | 9 + > arch/arm/mach-rockchip/rk3188/clk_rk3188.c | 17 + > arch/arm/mach-rockchip/rk3188/reset_rk3188.c | 47 ++ > arch/arm/mach-rockchip/rk3188/syscon_rk3188.c | 24 + > include/configs/rk3188_common.h | 95 ++++ > tools/rkcommon.c | 1 + > 11 files changed, 1276 insertions(+) > create mode 100644 arch/arm/dts/rk3188.dtsi > create mode 100644 arch/arm/dts/rk3xxx.dtsi > create mode 100644 arch/arm/mach-rockchip/rk3188/Kconfig > create mode 100644 arch/arm/mach-rockchip/rk3188/Makefile > create mode 100644 arch/arm/mach-rockchip/rk3188/clk_rk3188.c > create mode 100644 arch/arm/mach-rockchip/rk3188/reset_rk3188.c > create mode 100644 arch/arm/mach-rockchip/rk3188/syscon_rk3188.c > create mode 100644 include/configs/rk3188_common.h > > diff --git a/arch/arm/dts/rk3188.dtsi b/arch/arm/dts/rk3188.dtsi > new file mode 100644 > index 0000000..ef1b962 > --- /dev/null > +++ b/arch/arm/dts/rk3188.dtsi > @@ -0,0 +1,631 @@ > +/* > + * Copyright (c) 2013 MundoReader S.L. > + * Author: Heiko Stuebner > + * > + * 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. > + */ it seems I forgot more license-header conversions in these new two patches. Sorry about that. Heiko