All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jesper Nilsson <jesper.nilsson@axis.com>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-cris-kernel <linux-cris-kernel@axis.com>
Subject: [GIT PULL]: CRIS changes for 4.1
Date: Sat, 25 Apr 2015 20:12:41 +0200	[thread overview]
Message-ID: <20150425181241.GV11161@axis.com> (raw)

Hi Linus,

Please pull the below tree for some much needed love for the CRIS-port,
there's a bunch of changes this time, giving the CRISv32 port a bit of
modern makeover with device-tree, irq domain and gpiolib support,
and more switchover to generic frameworks.

Some small fixes and removal of the theoretical SMP support brings up the rear.

Thanks!

The following changes since commit 90a5a895cc8b284ac522757a01de15e36710c2b9:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2015-03-23 10:16:13 -0700)

are available in the git repository at:


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

for you to fetch changes up to d939b52abe0cee9cc3167f554da6b864db86d3f2:

  cris: fix integer overflow in ELF_ET_DYN_BASE (2015-03-25 11:35:12 +0100)

----------------------------------------------------------------
CRIS changes for 4.1

----------------------------------------------------------------
Andrey Ryabinin (1):
      cris: fix integer overflow in ELF_ET_DYN_BASE

Jesper Nilsson (1):
      Add binding documentation for CRIS

Rabin Vincent (17):
      CRIS: enable GPIOLIB
      CRISv32: add irq domains support
      CRISv32: add device tree support
      CRIS: add Axis 88 board device tree
      CRISv32: don't attempt syscall restart on irq exit
      CRISv32: prevent bogus restarts on sigreturn
      CRISv32: handle multiple signals
      CRISv32: don't enable irqs in INIT_THREAD
      CRIS: remove SMP code
      CRISv10: remove redundant macros from system.h
      CRIS: use generic atomic bitops
      CRIS: use generic atomic.h
      CRIS: use generic cmpxchg.h
      CRIS: use generic headers via Kbuild
      CRISv32: use generic clockevents
      CRISv32: use MMIO clocksource
      CRISv32: use GENERIC_SCHED_CLOCK

 Documentation/devicetree/bindings/cris/axis.txt    |    9 +
 Documentation/devicetree/bindings/cris/boards.txt  |    8 +
 .../devicetree/bindings/cris/interrupts.txt        |   23 ++
 arch/cris/Kconfig                                  |   12 +-
 arch/cris/Makefile                                 |    4 +
 arch/cris/arch-v32/kernel/Makefile                 |    1 -
 arch/cris/arch-v32/kernel/entry.S                  |   42 +--
 arch/cris/arch-v32/kernel/head.S                   |   32 --
 arch/cris/arch-v32/kernel/irq.c                    |   31 +-
 arch/cris/arch-v32/kernel/setup.c                  |    5 -
 arch/cris/arch-v32/kernel/signal.c                 |    5 +
 arch/cris/arch-v32/kernel/smp.c                    |  358 --------------------
 arch/cris/arch-v32/kernel/time.c                   |  180 +++++-----
 arch/cris/arch-v32/lib/Makefile                    |    2 +-
 arch/cris/arch-v32/lib/spinlock.S                  |   40 ---
 arch/cris/arch-v32/mm/init.c                       |   11 -
 arch/cris/arch-v32/mm/mmu.S                        |    4 -
 arch/cris/boot/dts/Makefile                        |    6 +
 arch/cris/boot/dts/dev88.dts                       |   18 +
 arch/cris/boot/dts/etraxfs.dtsi                    |   38 +++
 arch/cris/include/arch-v10/arch/atomic.h           |    7 -
 arch/cris/include/arch-v10/arch/system.h           |    8 -
 arch/cris/include/arch-v32/arch/atomic.h           |   36 --
 arch/cris/include/arch-v32/arch/processor.h        |    3 +-
 arch/cris/include/arch-v32/arch/spinlock.h         |  131 -------
 arch/cris/include/asm/Kbuild                       |   15 +-
 arch/cris/include/asm/atomic.h                     |  149 --------
 arch/cris/include/asm/bitops.h                     |  111 +-----
 arch/cris/include/asm/cmpxchg.h                    |   53 ---
 arch/cris/include/asm/device.h                     |    7 -
 arch/cris/include/asm/div64.h                      |    1 -
 arch/cris/include/asm/elf.h                        |    2 +-
 arch/cris/include/asm/emergency-restart.h          |    6 -
 arch/cris/include/asm/futex.h                      |    6 -
 arch/cris/include/asm/hardirq.h                    |    7 -
 arch/cris/include/asm/irq_regs.h                   |    1 -
 arch/cris/include/asm/kdebug.h                     |    1 -
 arch/cris/include/asm/kmap_types.h                 |   10 -
 arch/cris/include/asm/local.h                      |    1 -
 arch/cris/include/asm/local64.h                    |    1 -
 arch/cris/include/asm/percpu.h                     |    6 -
 arch/cris/include/asm/smp.h                        |   10 -
 arch/cris/include/asm/spinlock.h                   |    1 -
 arch/cris/include/asm/tlbflush.h                   |    7 -
 arch/cris/include/asm/topology.h                   |    6 -
 arch/cris/kernel/Makefile                          |    1 +
 arch/cris/kernel/devicetree.c                      |   14 +
 arch/cris/kernel/ptrace.c                          |   23 ++
 arch/cris/kernel/setup.c                           |   15 +
 arch/cris/kernel/time.c                            |    2 +
 50 files changed, 325 insertions(+), 1145 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/cris/axis.txt
 create mode 100644 Documentation/devicetree/bindings/cris/boards.txt
 create mode 100644 Documentation/devicetree/bindings/cris/interrupts.txt
 delete mode 100644 arch/cris/arch-v32/kernel/smp.c
 delete mode 100644 arch/cris/arch-v32/lib/spinlock.S
 create mode 100644 arch/cris/boot/dts/Makefile
 create mode 100644 arch/cris/boot/dts/dev88.dts
 create mode 100644 arch/cris/boot/dts/etraxfs.dtsi
 delete mode 100644 arch/cris/include/arch-v10/arch/atomic.h
 delete mode 100644 arch/cris/include/arch-v32/arch/atomic.h
 delete mode 100644 arch/cris/include/arch-v32/arch/spinlock.h
 delete mode 100644 arch/cris/include/asm/atomic.h
 delete mode 100644 arch/cris/include/asm/cmpxchg.h
 delete mode 100644 arch/cris/include/asm/device.h
 delete mode 100644 arch/cris/include/asm/div64.h
 delete mode 100644 arch/cris/include/asm/emergency-restart.h
 delete mode 100644 arch/cris/include/asm/futex.h
 delete mode 100644 arch/cris/include/asm/hardirq.h
 delete mode 100644 arch/cris/include/asm/irq_regs.h
 delete mode 100644 arch/cris/include/asm/kdebug.h
 delete mode 100644 arch/cris/include/asm/kmap_types.h
 delete mode 100644 arch/cris/include/asm/local.h
 delete mode 100644 arch/cris/include/asm/local64.h
 delete mode 100644 arch/cris/include/asm/percpu.h
 delete mode 100644 arch/cris/include/asm/smp.h
 delete mode 100644 arch/cris/include/asm/spinlock.h
 delete mode 100644 arch/cris/include/asm/topology.h
 create mode 100644 arch/cris/kernel/devicetree.c


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

                 reply	other threads:[~2015-04-25 18:12 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20150425181241.GV11161@axis.com \
    --to=jesper.nilsson@axis.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-cris-kernel@axis.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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 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.