From: robh@kernel.org (Rob Herring)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/14] ARM: am437x: cm-t43: dts: add basic support for sbc-t43
Date: Wed, 25 Nov 2015 17:03:00 -0600 [thread overview]
Message-ID: <20151125230300.GA23057@rob-hp-laptop> (raw)
In-Reply-To: <1448371155-17307-2-git-send-email-nikita@compulab.co.il>
On Tue, Nov 24, 2015 at 03:19:02PM +0200, Nikita Kiryanov wrote:
> Add basic support for SBC-T43: a CM-T43 based single board computer.
> CM-T43 is an AM437x based System-on-Module designed to serve as a building
> block in embedded applications. SBC-T43 is composed of CM-T43 module on
> top of the SB-SOM-T43 baseboard.
> Basic support includes UART, GPIO, and I2C.
>
> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Igor Grinberg <grinberg@compulab.co.il>
> Cc: Dmitry Lifshitz <lifshitz@compulab.co.il>
> Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
Some minor nits below, otherwise:
Acked-by: Rob Herring <robh@kernel.org>
> ---
> .../devicetree/bindings/arm/omap/omap.txt | 6 ++
> arch/arm/boot/dts/Makefile | 6 +-
> arch/arm/boot/dts/am437x-cm-t43.dts | 90 ++++++++++++++++++++++
> arch/arm/boot/dts/am437x-sbc-t43.dts | 57 ++++++++++++++
> 4 files changed, 157 insertions(+), 2 deletions(-)
> create mode 100644 arch/arm/boot/dts/am437x-cm-t43.dts
> create mode 100644 arch/arm/boot/dts/am437x-sbc-t43.dts
>
> diff --git a/Documentation/devicetree/bindings/arm/omap/omap.txt b/Documentation/devicetree/bindings/arm/omap/omap.txt
> index 9f4e513..da84372 100644
> --- a/Documentation/devicetree/bindings/arm/omap/omap.txt
> +++ b/Documentation/devicetree/bindings/arm/omap/omap.txt
> @@ -141,6 +141,12 @@ Boards:
> - OMAP5 EVM : Evaluation Module
> compatible = "ti,omap5-evm", "ti,omap5"
>
> +- AM437x CM-T43
> + compatible = "compulab,am437x-cm-t43", "ti,am4372", "ti,am43"
> +
> +- AM437x SBC-T43
> + compatible = "compulab,am437x-sbc-t43","compulab,am437x-cm-t43","ti,am4372","ti,am43"
^
spaces
> +
> - AM43x EPOS EVM
> compatible = "ti,am43x-epos-evm", "ti,am4372", "ti,am43"
>
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index 30bbc37..dc3b9af 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -478,9 +478,11 @@ dtb-$(CONFIG_ARCH_OMAP4) += \
> omap4-var-stk-om44.dtb
> dtb-$(CONFIG_SOC_AM43XX) += \
> am43x-epos-evm.dtb \
> - am437x-sk-evm.dtb \
> + am437x-cm-t43.dtb \
> + am437x-gp-evm.dtb \
> am437x-idk-evm.dtb \
> - am437x-gp-evm.dtb
> + am437x-sbc-t43.dtb \
> + am437x-sk-evm.dtb
> dtb-$(CONFIG_SOC_OMAP5) += \
> omap5-cm-t54.dtb \
> omap5-igep0050.dtb \
> diff --git a/arch/arm/boot/dts/am437x-cm-t43.dts b/arch/arm/boot/dts/am437x-cm-t43.dts
> new file mode 100644
> index 0000000..69887c4
> --- /dev/null
> +++ b/arch/arm/boot/dts/am437x-cm-t43.dts
> @@ -0,0 +1,90 @@
> +/*
> + * Copyright (C) 2015 CompuLab, Ltd. - http://www.compulab.co.il/
> + *
> + * 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
> + * published by the Free Software Foundation.
> + */
> +
> +/dts-v1/;
> +
> +#include <dt-bindings/pinctrl/am43xx.h>
> +#include <dt-bindings/gpio/gpio.h>
> +#include <dt-bindings/interrupt-controller/irq.h>
> +#include "am4372.dtsi"
> +
> +/ {
> + model = "CompuLab CM-T43";
> + compatible = "compulab,am437x-cm-t43","ti,am4372","ti,am43";
^
space
[...]
> diff --git a/arch/arm/boot/dts/am437x-sbc-t43.dts b/arch/arm/boot/dts/am437x-sbc-t43.dts
> new file mode 100644
> index 0000000..f3cd76b
> --- /dev/null
> +++ b/arch/arm/boot/dts/am437x-sbc-t43.dts
> @@ -0,0 +1,57 @@
> +/*
> + * Copyright (C) 2015 CompuLab, Ltd. - http://www.compulab.co.il/
> + *
> + * 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
> + * published by the Free Software Foundation.
> + */
> +
> +#include "am437x-cm-t43.dts"
> +
> +/ {
> + model = "CompuLab CM-T43 on SB-SOM-T43";
> + compatible = "compulab,am437x-sbc-t43","compulab,am437x-cm-t43","ti,am4372","ti,am43";
spaces
next prev parent reply other threads:[~2015-11-25 23:03 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-24 13:19 [PATCH 00/14] Add support for sbc-t43 Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 01/14] ARM: am437x: cm-t43: dts: add basic " Nikita Kiryanov
2015-11-25 23:03 ` Rob Herring [this message]
2015-11-30 15:33 ` Nikita Kiryanov
2015-11-30 21:48 ` Tony Lindgren
2015-11-24 13:19 ` [PATCH 02/14] ARM: am437x: cm-t43: dts: add support for module eeprom Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 03/14] ARM: am437x: cm-t43: dts: add PMIC support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 04/14] ARM: am437x: cm-t43: dts: add spi-flash support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 05/14] ARM: am437x: cm-t43: dts: add NAND support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 06/14] ARM: am437x: cm-t43: dts: add dual emac support Nikita Kiryanov
2015-11-26 10:34 ` Mugunthan V N
2015-11-24 13:19 ` [PATCH 07/14] ARM: am437x: cm-t43: dts: add USB support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 08/14] ARM: am437x: cm-t43: dts: add eMMC support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 09/14] ARM: am437x: cm-t43: dts: add touchscreen support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 10/14] ARM: am437x: cm-t43: dts: add pca9555 support Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 11/14] ARM: am437x: cm-t43: dts: add support for baseboard eeprom Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 12/14] ARM: sb-som: dts: introduce SB-SOM baseboard Nikita Kiryanov
2015-11-25 22:57 ` Rob Herring
2015-11-30 15:32 ` Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 13/14] ARM: am437x: cm-t43: dts: add support for mmc1 Nikita Kiryanov
2015-11-24 13:19 ` [PATCH 14/14] ARM: am437x: cm-t43: dts: add lcd support Nikita Kiryanov
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=20151125230300.GA23057@rob-hp-laptop \
--to=robh@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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