All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL]: CRIS changes for 4.4
@ 2015-11-02 20:17 Jesper Nilsson
  2015-11-03  0:49 ` Stephen Rothwell
  0 siblings, 1 reply; 3+ messages in thread
From: Jesper Nilsson @ 2015-11-02 20:17 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton, Linux Kernel Mailing List,
	linux-cris-kernel

Hi Linus,

Please pull CRIS changes for 4.4:

Mostly another batch of code removal due to move to standard
frameworks for CRISv32, initial devicetree configuration for
a couple of boards, and some small fixes for kgdb and time handling.

Thanks,

/Jesper

The following changes since commit 6a13feb9c82803e2b815eca72fa7a9f5561d7861:

  Linux 4.3 (2015-11-01 16:05:25 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git tags/cris-for-4.4

for you to fetch changes up to 4247896f4b8bdbe2c9a03c2f713b636e94eab210:

  cris: Drop reference to get_cmos_time() (2015-11-02 20:03:05 +0100)

----------------------------------------------------------------
CRIS changes for 4.4

----------------------------------------------------------------
Andy Shevchenko (2):
      cris: kgdb: use native hex2bin
      cris: re-use helpers to dump data in hex format

Chen Gang (2):
      cris: arch-v10: kgdb: Use BAR instead of DTP0 for register P12
      cris: arch-v10: kgdb: Add '__used' for static variable is_dyn_brkp

Guenter Roeck (1):
      cris: Drop reference to get_cmos_time()

Jesper Nilsson (1):
      CRIS: Drop code related to obsolete or unused kconfigs

Rabin Vincent (6):
      CRIS v32: increase NR_IRQS
      CRIS: add dt-bindings symlink
      CRIS v32: dev88: add GPIO, LEDs, RTC, temp sensor
      CRIS v32: add ARTPEC-3 and P1343 device trees
      CRIS v32: remove I2C bitbanging driver
      CRIS v32: remove old GPIO and LEDs code

Xunlei Pang (1):
      cris: time: Cleanup of persistent clock stuff

 arch/cris/Kconfig                           |    1 -
 arch/cris/arch-v10/kernel/head.S            |  106 ---
 arch/cris/arch-v10/kernel/kgdb.c            |   89 +--
 arch/cris/arch-v10/mm/init.c                |   14 +-
 arch/cris/arch-v32/Kconfig                  |   89 ---
 arch/cris/arch-v32/drivers/Kconfig          |  167 -----
 arch/cris/arch-v32/drivers/Makefile         |    1 -
 arch/cris/arch-v32/drivers/axisflashmap.c   |   40 +-
 arch/cris/arch-v32/drivers/i2c.c            |  751 --------------------
 arch/cris/arch-v32/drivers/i2c.h            |   16 -
 arch/cris/arch-v32/drivers/mach-a3/Makefile |    1 -
 arch/cris/arch-v32/drivers/mach-a3/gpio.c   |  999 ---------------------------
 arch/cris/arch-v32/drivers/mach-fs/Makefile |    1 -
 arch/cris/arch-v32/drivers/mach-fs/gpio.c   |  978 --------------------------
 arch/cris/arch-v32/kernel/crisksyms.c       |    3 -
 arch/cris/arch-v32/kernel/debugport.c       |    2 -
 arch/cris/arch-v32/kernel/head.S            |    4 -
 arch/cris/arch-v32/kernel/irq.c             |    6 +-
 arch/cris/arch-v32/kernel/kgdb.c            |   96 +--
 arch/cris/arch-v32/kernel/setup.c           |    8 -
 arch/cris/arch-v32/mach-a3/Makefile         |    2 +-
 arch/cris/arch-v32/mach-a3/io.c             |  149 ----
 arch/cris/arch-v32/mach-fs/Kconfig          |   19 -
 arch/cris/arch-v32/mach-fs/Makefile         |    2 +-
 arch/cris/arch-v32/mach-fs/io.c             |  191 -----
 arch/cris/boot/dts/artpec3.dtsi             |   46 ++
 arch/cris/boot/dts/dev88.dts                |   49 ++
 arch/cris/boot/dts/etraxfs.dtsi             |    8 +
 arch/cris/boot/dts/include/dt-bindings      |    1 +
 arch/cris/boot/dts/p1343.dts                |   76 ++
 arch/cris/boot/rescue/head_v10.S            |    3 -
 arch/cris/include/arch-v32/arch/io.h        |  140 ----
 arch/cris/include/arch-v32/arch/irq.h       |    2 +-
 arch/cris/include/asm/eshlibld.h            |    3 +-
 arch/cris/include/asm/io.h                  |    2 +
 arch/cris/include/uapi/asm/etraxgpio.h      |  157 -----
 arch/cris/kernel/crisksyms.c                |    2 -
 arch/cris/kernel/time.c                     |   25 -
 38 files changed, 272 insertions(+), 3977 deletions(-)
 delete mode 100644 arch/cris/arch-v32/drivers/i2c.c
 delete mode 100644 arch/cris/arch-v32/drivers/i2c.h
 delete mode 100644 arch/cris/arch-v32/drivers/mach-a3/gpio.c
 delete mode 100644 arch/cris/arch-v32/drivers/mach-fs/gpio.c
 delete mode 100644 arch/cris/arch-v32/mach-a3/io.c
 delete mode 100644 arch/cris/arch-v32/mach-fs/io.c
 create mode 100644 arch/cris/boot/dts/artpec3.dtsi
 create mode 120000 arch/cris/boot/dts/include/dt-bindings
 create mode 100644 arch/cris/boot/dts/p1343.dts
 delete mode 100644 arch/cris/include/arch-v32/arch/io.h

/^JN - Jesper Nilsson
-- 
               Jesper Nilsson -- jesper.nilsson@axis.com

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

* Re: [GIT PULL]: CRIS changes for 4.4
  2015-11-02 20:17 [GIT PULL]: CRIS changes for 4.4 Jesper Nilsson
@ 2015-11-03  0:49 ` Stephen Rothwell
  2015-11-03  9:18   ` Jesper Nilsson
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Rothwell @ 2015-11-03  0:49 UTC (permalink / raw)
  To: Jesper Nilsson
  Cc: Linus Torvalds, Andrew Morton, Linux Kernel Mailing List,
	linux-cris-kernel

Hi Jesper,

On Mon, 2 Nov 2015 21:17:03 +0100 Jesper Nilsson <jesper.nilsson@axis.com> wrote:
>
> Please pull CRIS changes for 4.4:
> 
> Mostly another batch of code removal due to move to standard
> frameworks for CRISv32, initial devicetree configuration for
> a couple of boards, and some small fixes for kgdb and time handling.
> 
> Thanks,
> 
> /Jesper
> 
> The following changes since commit 6a13feb9c82803e2b815eca72fa7a9f5561d7861:
> 
>   Linux 4.3 (2015-11-01 16:05:25 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git tags/cris-for-4.4

This is all the same patches as are in linux-next (and have been for
some time) but has been rebased on top of v4.3 today ...

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

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

* Re: [GIT PULL]: CRIS changes for 4.4
  2015-11-03  0:49 ` Stephen Rothwell
@ 2015-11-03  9:18   ` Jesper Nilsson
  0 siblings, 0 replies; 3+ messages in thread
From: Jesper Nilsson @ 2015-11-03  9:18 UTC (permalink / raw)
  To: Stephen Rothwell
  Cc: Jesper Nilsson, Linus Torvalds, Andrew Morton,
	Linux Kernel Mailing List, linux-cris-kernel

On Tue, Nov 03, 2015 at 01:49:23AM +0100, Stephen Rothwell wrote:
> Hi Jesper,
> 
> On Mon, 2 Nov 2015 21:17:03 +0100 Jesper Nilsson <jesper.nilsson@axis.com> wrote:
> >
> > Please pull CRIS changes for 4.4:
> > 
> > Mostly another batch of code removal due to move to standard
> > frameworks for CRISv32, initial devicetree configuration for
> > a couple of boards, and some small fixes for kgdb and time handling.
> > 
> > Thanks,
> > 
> > /Jesper
> > 
> > The following changes since commit 6a13feb9c82803e2b815eca72fa7a9f5561d7861:
> > 
> >   Linux 4.3 (2015-11-01 16:05:25 -0800)
> > 
> > are available in the git repository at:
> > 
> >   git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git tags/cris-for-4.4
> 
> This is all the same patches as are in linux-next (and have been for
> some time) but has been rebased on top of v4.3 today ...

Yes, you're right, I did do a rebase to make a final
compile test, I should have dropped that branch and
sent the for-next branch instead. :-(

> Cheers,
> Stephen Rothwell                    sfr@canb.auug.org.au

/^JN - Jesper Nilsson
-- 
               Jesper Nilsson -- jesper.nilsson@axis.com

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

end of thread, other threads:[~2015-11-03  9:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-02 20:17 [GIT PULL]: CRIS changes for 4.4 Jesper Nilsson
2015-11-03  0:49 ` Stephen Rothwell
2015-11-03  9:18   ` Jesper Nilsson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.