linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/10] initial suport for Alphascale ASM9260
@ 2014-10-14  8:03 Oleksij Rempel
  2014-10-14  8:03 ` [PATCH v5 01/10] ARM: add mach-asm9260 Oleksij Rempel
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Oleksij Rempel @ 2014-10-14  8:03 UTC (permalink / raw)
  To: linux-arm-kernel

This patchset provide initial support for Alpascale ASM9260,
ARM based SoC.

Oleksij Rempel (10):
  ARM: add mach-asm9260
  ARM: add lolevel debug support for asm9260
  ARM: clk: add clk-asm9260 driver
  ARM: irqchip: mxs: prepare driver for HW with different offsets
  ARM: irqchip: mxs: add Alpascale ASM9260 support
  ARM: clocksource: add asm9260_timer driver
  ARM: tty: mxs-auart: add initial Alphascale ASM9260 support
  ARM: dts: add DT for Alphascale ASM9260 SoC
  ARM: add alphascale,acc.txt bindings documentation
  add Alphascale to vendor-prefixes.txt

 .../devicetree/bindings/clock/alphascale,acc.txt   | 115 +++++++
 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 arch/arm/Kconfig                                   |   2 +
 arch/arm/Kconfig.debug                             |  33 +-
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/alphascale-asm9260-devkit.dts    |  21 ++
 arch/arm/boot/dts/alphascale-asm9260.dtsi          | 134 ++++++++
 arch/arm/include/debug/asm9260.S                   |  31 ++
 arch/arm/mach-asm9260/Kconfig                      |   8 +
 drivers/clk/Makefile                               |   1 +
 drivers/clk/clk-asm9260.c                          | 351 +++++++++++++++++++
 drivers/clocksource/Kconfig                        |   4 +
 drivers/clocksource/Makefile                       |   1 +
 drivers/clocksource/asm9260_timer.c                | 234 +++++++++++++
 drivers/irqchip/Kconfig                            |   5 +
 drivers/irqchip/Makefile                           |   2 +-
 drivers/irqchip/alphascale_asm9260-icoll.h         | 109 ++++++
 drivers/irqchip/irq-mxs.c                          | 157 ++++++++-
 drivers/tty/serial/Kconfig                         |   5 +-
 drivers/tty/serial/alphascale,asm9260_serial.h     | 373 +++++++++++++++++++++
 drivers/tty/serial/mxs-auart.c                     | 344 ++++++++++++-------
 include/dt-bindings/clock/alphascale,asm9260.h     |  97 ++++++
 22 files changed, 1887 insertions(+), 143 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/alphascale,acc.txt
 create mode 100644 arch/arm/boot/dts/alphascale-asm9260-devkit.dts
 create mode 100644 arch/arm/boot/dts/alphascale-asm9260.dtsi
 create mode 100644 arch/arm/include/debug/asm9260.S
 create mode 100644 arch/arm/mach-asm9260/Kconfig
 create mode 100644 drivers/clk/clk-asm9260.c
 create mode 100644 drivers/clocksource/asm9260_timer.c
 create mode 100644 drivers/irqchip/alphascale_asm9260-icoll.h
 create mode 100644 drivers/tty/serial/alphascale,asm9260_serial.h
 create mode 100644 include/dt-bindings/clock/alphascale,asm9260.h

-- 
1.9.1

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH v4 01/10] ARM: add mach-asm9260
@ 2014-10-12 23:24 Rob Herring
  2014-10-13  6:31 ` [PATCH v5 " Oleksij Rempel
  0 siblings, 1 reply; 17+ messages in thread
From: Rob Herring @ 2014-10-12 23:24 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, Oct 12, 2014 at 2:19 PM, Oleksij Rempel <linux@rempel-privat.de> wrote:
> it is low cost (?) SoC targeted for market in China and India which
> trying to compete with AT91SAM9G25.
>
> Here is some info:
> http://www.alphascale.com/index.asp?ics/615.html
>
> One of products:
> http://www.aliexpress.com/store/product/2014-hot-sales-FREE-SHIPPING-new-Purple-core-ARM9-development-board-ASM9260T-SDRAM-power-line/433637_1931495721.html
>
> In some cases this SoC looks similar to iMX23/iMX28. But currently it makes no
> sense to merge mach code of this devices. Especially because most differences
> are already collected mach-mxs folder.
>
> Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
> ---
>  arch/arm/Kconfig               |  2 ++
>  arch/arm/Makefile              |  1 +
>  arch/arm/mach-asm9260/Kconfig  |  8 ++++++++
>  arch/arm/mach-asm9260/Makefile |  1 +
>  arch/arm/mach-asm9260/core.c   | 20 ++++++++++++++++++++
>  5 files changed, 32 insertions(+)
>  create mode 100644 arch/arm/mach-asm9260/Kconfig
>  create mode 100644 arch/arm/mach-asm9260/Makefile
>  create mode 100644 arch/arm/mach-asm9260/core.c
>
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index 5918d40..87373da 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -968,6 +968,8 @@ source "arch/arm/mach-w90x900/Kconfig"
>
>  source "arch/arm/mach-zynq/Kconfig"
>
> +source "arch/arm/mach-asm9260/Kconfig"
> +
>  # Definitions to make life easier
>  config ARCH_ACORN
>         bool
> diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> index 0ce9d0f..dda8f6d 100644
> --- a/arch/arm/Makefile
> +++ b/arch/arm/Makefile
> @@ -146,6 +146,7 @@ textofs-$(CONFIG_ARCH_AXXIA) := 0x00308000
>  # Machine directory name.  This list is sorted alphanumerically
>  # by CONFIG_* macro name.
>  machine-$(CONFIG_ARCH_AT91)            += at91
> +machine-$(CONFIG_MACH_ASM9260)         += asm9260
>  machine-$(CONFIG_ARCH_AXXIA)           += axxia
>  machine-$(CONFIG_ARCH_BCM)             += bcm
>  machine-$(CONFIG_ARCH_BERLIN)          += berlin
> diff --git a/arch/arm/mach-asm9260/Kconfig b/arch/arm/mach-asm9260/Kconfig
> new file mode 100644
> index 0000000..eef90d9
> --- /dev/null
> +++ b/arch/arm/mach-asm9260/Kconfig
> @@ -0,0 +1,8 @@
> +config MACH_ASM9260
> +       bool "Alphascale ASM9260"
> +       depends on ARCH_MULTI_V5
> +       select IRQ_MXS
> +       select ASM9260_TIMER
> +       select CPU_ARM926T
> +       help
> +         Support for Alpascale ASM9260 based platform.
> diff --git a/arch/arm/mach-asm9260/Makefile b/arch/arm/mach-asm9260/Makefile
> new file mode 100644
> index 0000000..3f774e4
> --- /dev/null
> +++ b/arch/arm/mach-asm9260/Makefile
> @@ -0,0 +1 @@
> +obj-$(CONFIG_MACH_ASM9260) += core.o
> diff --git a/arch/arm/mach-asm9260/core.c b/arch/arm/mach-asm9260/core.c
> new file mode 100644
> index 0000000..d1b9006
> --- /dev/null
> +++ b/arch/arm/mach-asm9260/core.c
> @@ -0,0 +1,20 @@
> +/*
> + * Copyright (C) 2014 Oleksij Rempel <linux@rempel-privat.de>
> + *
> + * This program 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.
> + */
> +
> +#include <linux/of_platform.h>
> +#include <asm/mach/arch.h>
> +
> +static const char * const asm9260_dt_board_compat[] __initconst = {
> +       "alphascale,asm9260",
> +       NULL
> +};
> +
> +DT_MACHINE_START(ASM9260, "Alphascale ASM9260 (Device Tree Support)")
> +       .dt_compat      = asm9260_dt_board_compat,
> +MACHINE_END

You don't need this file as you are not doing anything special here.
Only the kconfig is needed.

Rob

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2014-10-19 20:13 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-14  8:03 [PATCH v5 00/10] initial suport for Alphascale ASM9260 Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 01/10] ARM: add mach-asm9260 Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 02/10] ARM: add lolevel debug support for asm9260 Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 03/10] ARM: clk: add clk-asm9260 driver Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 04/10] ARM: irqchip: mxs: prepare driver for HW with different offsets Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 05/10] ARM: irqchip: mxs: add Alpascale ASM9260 support Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 06/10] ARM: clocksource: add asm9260_timer driver Oleksij Rempel
2014-10-15 21:31   ` Matthias Brugger
2014-10-16 10:46     ` Oleksij Rempel
2014-10-16 14:49       ` Matthias Brugger
2014-10-17  9:46     ` [PATCH v6] " Oleksij Rempel
2014-10-19 20:13       ` Arnd Bergmann
2014-10-14  8:03 ` [PATCH v5 07/10] ARM: tty: mxs-auart: add initial Alphascale ASM9260 support Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 08/10] ARM: dts: add DT for Alphascale ASM9260 SoC Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 09/10] ARM: add alphascale,acc.txt bindings documentation Oleksij Rempel
2014-10-14  8:03 ` [PATCH v5 10/10] add Alphascale to vendor-prefixes.txt Oleksij Rempel
  -- strict thread matches above, loose matches on Subject: below --
2014-10-12 23:24 [PATCH v4 01/10] ARM: add mach-asm9260 Rob Herring
2014-10-13  6:31 ` [PATCH v5 " Oleksij Rempel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).