public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Dinh Nguyen <dinguyen@opensource.altera.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 10/12] dt: socfpga: Import and enable Arria V DK DTS
Date: Sun, 18 Jan 2015 00:21:34 -0600	[thread overview]
Message-ID: <54BB50EE.4070002@opensource.altera.com> (raw)
In-Reply-To: <1420053301-10023-11-git-send-email-marex@denx.de>



On 12/31/14 1:14 PM, Marek Vasut wrote:
> Import DTS for Arria V development kit and enable support
> for DT. The DT is imported from Linux 3.19-rc1 as of commit
> 97bf6af1f928216fd6c5a66e8a57bfa95a659672 .
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Chin Liang See <clsee@opensource.altera.com>
> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> Cc: Pavel Machek <pavel@denx.de>
> Cc: Stefan Roese <sr@denx.de>
> Cc: Vince Bridgers <vbridger@opensource.altera.com>
> ---
>  arch/arm/dts/Makefile                 |  1 +
>  arch/arm/dts/socfpga_arria5.dtsi      | 34 ++++++++++++++++
>  arch/arm/dts/socfpga_arria5_socdk.dts | 74 +++++++++++++++++++++++++++++++++++
>  configs/socfpga_arria5_defconfig      |  2 +
>  4 files changed, 111 insertions(+)
>  create mode 100644 arch/arm/dts/socfpga_arria5.dtsi
>  create mode 100644 arch/arm/dts/socfpga_arria5_socdk.dts
> 
> diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
> index c851d65..2a84323 100644
> --- a/arch/arm/dts/Makefile
> +++ b/arch/arm/dts/Makefile
> @@ -49,6 +49,7 @@ dtb-$(CONFIG_ZYNQ) += zynq-zc702.dtb \
>  dtb-$(CONFIG_AM33XX) += am335x-boneblack.dtb
>  
>  dtb-$(CONFIG_SOCFPGA) +=				\
> +	socfpga_arria5_socdk.dtb			\
>  	socfpga_cyclone5_socdk.dtb			\
>  	socfpga_cyclone5_socrates.dtb
>  
> diff --git a/arch/arm/dts/socfpga_arria5.dtsi b/arch/arm/dts/socfpga_arria5.dtsi
> new file mode 100644
> index 0000000..5175f03
> --- /dev/null
> +++ b/arch/arm/dts/socfpga_arria5.dtsi
> @@ -0,0 +1,34 @@
> +/*
> + *  Copyright (C) 2013 Altera Corporation <www.altera.com>

Nit: extra space before "Copyright".

> + *
> + * SPDX-License-Identifier:	GPL-2.0+
> + */
> +
> +/dts-v1/;
> +/* First 4KB has trampoline code for secondary cores. */
> +/memreserve/ 0x00000000 0x0001000;
> +#include "socfpga.dtsi"
> +
> +/ {
> +	soc {
> +		clkmgr at ffd04000 {
> +			clocks {
> +				osc1 {
> +					clock-frequency = <25000000>;
> +				};
> +			};
> +		};
> +
> +		mmc0: dwmmc0 at ff704000 {
> +			num-slots = <1>;
> +			broken-cd;
> +			bus-width = <4>;
> +			cap-mmc-highspeed;
> +			cap-sd-highspeed;
> +		};
> +
> +		sysmgr at ffd08000 {
> +			cpu1-start-addr = <0xffd080c4>;
> +		};
> +	};
> +};
> diff --git a/arch/arm/dts/socfpga_arria5_socdk.dts b/arch/arm/dts/socfpga_arria5_socdk.dts
> new file mode 100644
> index 0000000..4e529a1
> --- /dev/null
> +++ b/arch/arm/dts/socfpga_arria5_socdk.dts
> @@ -0,0 +1,74 @@
> +/*
> + *  Copyright (C) 2013 Altera Corporation <www.altera.com>

Same nit

Dinh

  parent reply	other threads:[~2015-01-18  6:21 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-31 19:14 [U-Boot] [PATCH 00/12] arm: socfpga: Arria V support and fixes Marek Vasut
2014-12-31 19:14 ` [U-Boot] [PATCH 01/12] arm: socfpga: Minor coding style fix Marek Vasut
2015-01-02  5:10   ` Pavel Machek
2015-01-03 20:26     ` Marek Vasut
2015-01-03 11:03   ` Stefan Roese
2015-01-18  6:09   ` Dinh Nguyen
2014-12-31 19:14 ` [U-Boot] [PATCH 02/12] arm: socfpga: Sync Cyclone V DK pinmux configuration Marek Vasut
2015-01-02  5:13   ` Pavel Machek
2015-01-03 20:28     ` Marek Vasut
2015-01-03 11:08   ` Stefan Roese
2015-01-03 20:30     ` Marek Vasut
2015-01-18  6:10   ` Dinh Nguyen
2014-12-31 19:14 ` [U-Boot] [PATCH 03/12] arm: socfpga: Sync Cyclone V DK PLL configuration Marek Vasut
2015-01-02  5:19   ` Pavel Machek
2015-01-03 20:30     ` Marek Vasut
2015-01-06 23:08       ` Pavel Machek
2015-01-07  1:34         ` Marek Vasut
2015-01-03 11:08   ` Stefan Roese
2015-01-18  6:11   ` Dinh Nguyen
2014-12-31 19:14 ` [U-Boot] [PATCH 04/12] arm: socfpga: Add USB and UDC support for Cyclone V DK Marek Vasut
2015-01-02  5:17   ` Pavel Machek
2015-01-03 11:09   ` Stefan Roese
2015-01-18  6:11   ` Dinh Nguyen
2014-12-31 19:14 ` [U-Boot] [PATCH 05/12] arm: socfpga: Drop cyclone5 suffix from board file name Marek Vasut
2015-01-02  5:19   ` Pavel Machek
2015-01-03 11:09   ` Stefan Roese
2015-01-18  6:12   ` Dinh Nguyen
2014-12-31 19:14 ` [U-Boot] [PATCH 06/12] arm: socfpga: Add Altera Arria V DK support Marek Vasut
2015-01-03 15:44   ` Pavel Machek
2015-01-03 20:34     ` Marek Vasut
2015-01-18  6:19   ` Dinh Nguyen
2015-01-30 22:09     ` Marek Vasut
2014-12-31 19:14 ` [U-Boot] [PATCH 07/12] dt: socfpga: Rename snps, dw-spi-mmio to snps, dw-apb-ssi Marek Vasut
2015-01-03 11:12   ` Stefan Roese
2015-01-03 15:45   ` Pavel Machek
2015-01-06 10:37     ` Jagan Teki
2015-01-06 15:41       ` Marek Vasut
2015-01-06 16:43         ` Jagan Teki
2015-01-06 16:49           ` Marek Vasut
2014-12-31 19:14 ` [U-Boot] [PATCH 08/12] dt: socfpga: Replace num-chipselect with num-cs Marek Vasut
2015-01-03 15:45   ` Pavel Machek
2015-01-07  6:45     ` Jagan Teki
2014-12-31 19:14 ` [U-Boot] [PATCH 09/12] dt: socfpga: Import and enable Cyclone V DK DTS Marek Vasut
2015-01-03 11:13   ` Stefan Roese
2015-01-03 15:47   ` Pavel Machek
2014-12-31 19:14 ` [U-Boot] [PATCH 10/12] dt: socfpga: Import and enable Arria " Marek Vasut
2015-01-03 11:13   ` Stefan Roese
2015-01-03 15:47   ` Pavel Machek
2015-01-18  6:21   ` Dinh Nguyen [this message]
2015-01-30 21:53     ` Marek Vasut
2014-12-31 19:14 ` [U-Boot] [PATCH 11/12] arm: socfpga: Zap checkboard() Marek Vasut
2015-01-03 11:13   ` Stefan Roese
2015-01-03 15:48   ` Pavel Machek
2015-01-18  6:22   ` Dinh Nguyen
2014-12-31 19:15 ` [U-Boot] [PATCH 12/12] arm: socfpga: Zap board_early_init_f() Marek Vasut
2015-01-03 11:13   ` Stefan Roese
2015-01-03 15:49   ` Pavel Machek
2015-01-18  6:23   ` Dinh Nguyen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54BB50EE.4070002@opensource.altera.com \
    --to=dinguyen@opensource.altera.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox