From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexey Brodkin Date: Mon, 11 Dec 2017 08:43:12 +0000 Subject: [U-Boot] Please pull ARC changes Message-ID: <1512981792.6183.5.camel@synopsys.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de Hi Tom, Seems like I'm a little bit late as RC1 was already cut but anyways I think most if not all the mentioned below changes could be safely pulled. That's because 5 of 6 patches are really just very trivial fixes (which I think is quite of for post-RC1 stage) and the only more significant change is HSDK clk driver. Still that patch was floated on the mailing list quite some time ago and shouldn't cause any troubles because it is by default is disabled, and essentially it all went through full TravisCI build so I don't expect any issues. Anyways if you prefer I may exclude HSDK clk driver from this pull-request and resend it shortly. The following changes since commit 335f7b1290ce24a729a9689a1db834c743226ca8:   Merge git://git.denx.de/u-boot-mpc85xx (2017-12-08 12:02:01 -0500) are available in the git repository at:   git://git.denx.de/u-boot-arc.git  for you to fetch changes up to e80dac0ab83ccb1d54e2d91b93d27b54a7f6544f:   ARC: clk: introduce HSDK CGU clock driver (2017-12-11 11:36:23 +0300) ---------------------------------------------------------------- Eugeniy Paltsev (6):       ARC: add asm/gpio.h to fix compilation error with CONFIG_CMD_GPIO       ARC: HSDK: Fixup DW SDIO CIU frequency to 50000000Hz       ARC: add macro to get CPU id       ARC: add defines of some cache and xCCM AUX registers       ARC: cache: explicitly initialize "*_exists" variables       ARC: clk: introduce HSDK CGU clock driver  MAINTAINERS                                      |   8 ++  arch/arc/include/asm/arcregs.h                   |   9 ++  arch/arc/include/asm/gpio.h                      |   1 +  arch/arc/lib/cache.c                             |  16 +--  board/synopsys/hsdk/hsdk.c                       |  12 ++-  doc/device-tree-bindings/clock/snps,hsdk-cgu.txt |  35 +++++++  drivers/clk/Kconfig                              |   6 ++  drivers/clk/Makefile                             |   1 +  drivers/clk/clk-hsdk-cgu.c                       | 564 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++  include/dt-bindings/clock/snps,hsdk-cgu.h        |  40 ++++++++  10 files changed, 683 insertions(+), 9 deletions(-)  create mode 100644 arch/arc/include/asm/gpio.h  create mode 100644 doc/device-tree-bindings/clock/snps,hsdk-cgu.txt  create mode 100644 drivers/clk/clk-hsdk-cgu.c  create mode 100644 include/dt-bindings/clock/snps,hsdk-cgu.h -Alexey