mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Antony Pavlov <antonynpavlov@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH v2 0/7] ARM: initial support for RC Module UEMD SoCs and MB 77.07 board
Date: Tue, 27 May 2014 07:14:40 +0200	[thread overview]
Message-ID: <20140527051440.GJ15686@pengutronix.de> (raw)
In-Reply-To: <1400788130-24202-1-git-send-email-antonynpavlov@gmail.com>

On Thu, May 22, 2014 at 11:48:43PM +0400, Antony Pavlov wrote:
> Research Centre "Module" (RC Module) is
> a Russian development company designing
> mixed-signal ASICs and real-time video-image
> processing systems.
> 
> К1879ХБ1Я (AKA K1879HB1YA) is a UEMD family SoC that combines
> a DSP core based on the NeuroMatrix(r) family
> with an ARM architecture CPU ARM1176JZF-S core.
> 
> The MB 77.07 is a small (80x80 mm) single-board computer
> developed in Russia by the RC Module.
> It was developed as an educational board for К1879ХБ1Я SoC
> capabilities demonstration.
> 
> See http://www.module.ru/en/catalog/micro/micro_pc/ for details.
> 

Applied, thanks

Sascha

> Changes since v1:
> 
>   1. fix reset_cpu()
>   2. fix pbl image build
>   3. add usb support
>   4. add uemd clocksource
>   5. add mb7707 barebox mini-howto
> 
> Antony Pavlov (7):
>   ARM: initial support for RC Module UEMD SoCs
>   ARM: uemd: add DEBUG_LL support
>   clocksource: add uemd clocksource
>   ARM: dts: add minimal К1879ХБ1Я devicetree file
>   ARM: uemd: add mb7707 board support
>   ARM: uemd: add module-mb7707_defconfig
>   ARM: mb7707: add barebox mini-howto
> 
>  arch/arm/Kconfig                                |  12 +++
>  arch/arm/Makefile                               |   1 +
>  arch/arm/boards/Makefile                        |   1 +
>  arch/arm/boards/module-mb7707/Makefile          |   2 +
>  arch/arm/boards/module-mb7707/board.c           |  43 ++++++++
>  arch/arm/boards/module-mb7707/lowlevel.c        |  34 +++++++
>  arch/arm/boards/module-mb7707/module-mb7707.dox |  29 ++++++
>  arch/arm/configs/module-mb7707_defconfig        |  49 +++++++++
>  arch/arm/dts/k1879hb1ya.dtsi                    |  37 +++++++
>  arch/arm/dts/module-mb7707.dts                  |  24 +++++
>  arch/arm/mach-uemd/Kconfig                      |  16 +++
>  arch/arm/mach-uemd/Makefile                     |   1 +
>  arch/arm/mach-uemd/include/mach/debug_ll.h      |  42 ++++++++
>  arch/arm/mach-uemd/include/mach/hardware.h      |   7 ++
>  arch/arm/mach-uemd/reset.c                      |  24 +++++
>  drivers/clocksource/Kconfig                     |   4 +
>  drivers/clocksource/Makefile                    |   1 +
>  drivers/clocksource/uemd.c                      | 130 ++++++++++++++++++++++++
>  18 files changed, 457 insertions(+)
>  create mode 100644 arch/arm/boards/module-mb7707/Makefile
>  create mode 100644 arch/arm/boards/module-mb7707/board.c
>  create mode 100644 arch/arm/boards/module-mb7707/lowlevel.c
>  create mode 100644 arch/arm/boards/module-mb7707/module-mb7707.dox
>  create mode 100644 arch/arm/configs/module-mb7707_defconfig
>  create mode 100644 arch/arm/dts/k1879hb1ya.dtsi
>  create mode 100644 arch/arm/dts/module-mb7707.dts
>  create mode 100644 arch/arm/mach-uemd/Kconfig
>  create mode 100644 arch/arm/mach-uemd/Makefile
>  create mode 100644 arch/arm/mach-uemd/include/mach/debug_ll.h
>  create mode 100644 arch/arm/mach-uemd/include/mach/hardware.h
>  create mode 100644 arch/arm/mach-uemd/reset.c
>  create mode 100644 drivers/clocksource/uemd.c
> 
> -- 
> 1.9.2
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      parent reply	other threads:[~2014-05-27  5:15 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-22 19:48 Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 1/7] ARM: initial support for RC Module UEMD SoCs Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 2/7] ARM: uemd: add DEBUG_LL support Antony Pavlov
2014-05-30  6:09   ` Holger Schurig
2014-05-30  9:05     ` Antony Pavlov
2014-05-30  9:03       ` Holger Schurig
2014-05-22 19:48 ` [PATCH v2 3/7] clocksource: add uemd clocksource Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 4/7] ARM: dts: add minimal К1879ХБ1Я devicetree file Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 5/7] ARM: uemd: add mb7707 board support Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 6/7] ARM: uemd: add module-mb7707_defconfig Antony Pavlov
2014-05-22 19:48 ` [PATCH v2 7/7] ARM: mb7707: add barebox mini-howto Antony Pavlov
2014-05-27  5:14 ` Sascha Hauer [this message]

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=20140527051440.GJ15686@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=antonynpavlov@gmail.com \
    --cc=barebox@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