mbox

[GIT,PULL] generic early_ioremap support

Message ID 1394677788.5094.89.camel@deneb.redhat.com
State New
Headers show

Pull-request

git://github.com/mosalter/linux.git tags/for-v3.15

Message

Mark Salter March 13, 2014, 2:29 a.m. UTC
Hi Andrew,

Could you add this series into the -mm tree for v3.15?

The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:

  Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)

are available in the git repository at:


  git://github.com/mosalter/linux.git tags/for-v3.15

for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:

  doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)

----------------------------------------------------------------
generic early_ioremap support

----------------------------------------------------------------
Dave Young (1):
      x86/mm: sparse warning fix for early_memremap

Mark Salter (5):
      mm: create generic early_ioremap() support
      x86: use generic early_ioremap
      arm64: initialize pgprot info earlier in boot
      arm64: add early_ioremap support
      doc/kernel-parameters.txt: add early_ioremap_debug

 Documentation/arm64/memory.txt      |   4 +-
 Documentation/kernel-parameters.txt |   5 +
 arch/arm64/Kconfig                  |   1 +
 arch/arm64/include/asm/Kbuild       |   1 +
 arch/arm64/include/asm/fixmap.h     |  67 ++++++++++
 arch/arm64/include/asm/io.h         |   1 +
 arch/arm64/include/asm/memory.h     |   2 +-
 arch/arm64/include/asm/mmu.h        |   1 +
 arch/arm64/kernel/early_printk.c    |   8 +-
 arch/arm64/kernel/head.S            |   9 +-
 arch/arm64/kernel/setup.c           |   4 +
 arch/arm64/mm/ioremap.c             |  85 +++++++++++++
 arch/arm64/mm/mmu.c                 |  44 +------
 arch/x86/Kconfig                    |   1 +
 arch/x86/include/asm/Kbuild         |   1 +
 arch/x86/include/asm/fixmap.h       |   6 +
 arch/x86/include/asm/io.h           |  14 +--
 arch/x86/mm/ioremap.c               | 224 +--------------------------------
 arch/x86/mm/pgtable_32.c            |   2 +-
 include/asm-generic/early_ioremap.h |  42 +++++++
 mm/Kconfig                          |   3 +
 mm/Makefile                         |   1 +
 mm/early_ioremap.c                  | 245 ++++++++++++++++++++++++++++++++++++
 23 files changed, 482 insertions(+), 289 deletions(-)
 create mode 100644 arch/arm64/include/asm/fixmap.h
 create mode 100644 include/asm-generic/early_ioremap.h
 create mode 100644 mm/early_ioremap.c


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Comments

Andrew Morton March 13, 2014, 2:53 a.m. UTC | #1
On Wed, 12 Mar 2014 22:29:48 -0400 Mark Salter <msalter@redhat.com> wrote:

> Hi Andrew,
> 
> Could you add this series into the -mm tree for v3.15?
> 
> The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:
> 
>   Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)
> 
> are available in the git repository at:
> 
> 
>   git://github.com/mosalter/linux.git tags/for-v3.15
> 
> for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:
> 
>   doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)
> 
> ----------------------------------------------------------------
> generic early_ioremap support

Spose so.  I was hoping the x86 and arm people might do it.  Has there
been sufficient feedback from those parties?

I don't actually do git pulls - I'll grab the patches off the mailing
list, if they're up to date?  (Sorry, it doesn't come up very often
so it isn't worth getting set up for).
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
Catalin Marinas March 13, 2014, 10:41 a.m. UTC | #2
On Wed, Mar 12, 2014 at 07:53:48PM -0700, Andrew Morton wrote:
> On Wed, 12 Mar 2014 22:29:48 -0400 Mark Salter <msalter@redhat.com> wrote:
> > Could you add this series into the -mm tree for v3.15?
> > 
> > The following changes since commit c3bebc71c4bcdafa24b506adf0c1de3c1f77e2e0:
> > 
> >   Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net (2014-03-04 08:44:32 -0800)
> > 
> > are available in the git repository at:
> > 
> > 
> >   git://github.com/mosalter/linux.git tags/for-v3.15
> > 
> > for you to fetch changes up to b27e0658d90c63dc2696eca44f7701a903cb13c5:
> > 
> >   doc/kernel-parameters.txt: add early_ioremap_debug (2014-03-09 12:53:50 -0400)
> > 
> > ----------------------------------------------------------------
> > generic early_ioremap support
> 
> Spose so.  I was hoping the x86 and arm people might do it.  Has there
> been sufficient feedback from those parties?

Both x86 and arm64 people acked these patches and we were wondering how
should they get in. Since they touch mm/, Mark thought you could take
them.