12 Mar, 2021

1 commit


15 Oct, 2019

1 commit


19 Jun, 2019

1 commit

  • Based on 2 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation #

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

    has been chosen to replace the boilerplate/reference in 4122 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Enrico Weigelt
    Reviewed-by: Kate Stewart
    Reviewed-by: Allison Randal
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

01 Sep, 2017

1 commit

  • Do not check which flash type the SoC was booted from before
    using this driver. Assume that the device tree is correct and use this
    driver when it was added to device tree. This also removes a build
    dependency to the SoC code.

    All device trees I am aware of only have one correct flash device entry
    in it. The device tree is anyway bundled with the kernel in all systems
    using device tree I know of.

    The boot mode can be specified with some pin straps and will select the
    flash type the rom code will boot from. One SPI, NOR or NAND flash chip
    can be connect to the EBU and used to load the first stage boot loader
    from.

    Signed-off-by: Hauke Mehrtens
    Cc: Mark Brown
    Cc: linux-spi@vger.kernel.org
    Signed-off-by: Mark Brown

    Hauke Mehrtens
     

08 Feb, 2015

1 commit


11 Dec, 2014

1 commit


20 Oct, 2014

1 commit


06 Jun, 2014

1 commit


15 Apr, 2014

1 commit


30 Mar, 2014

1 commit


16 Feb, 2014

1 commit

  • The purpose of commit 1e8a52e18cfb
    "spi: By default setup spi_masters with 1 chipselect and dynamics bus number"
    is to avoid setting default value for bus_num and num_chipselect in spi master
    drivers. So let's remove the duplicate code.

    Signed-off-by: Axel Lin
    Acked-by: Uwe Kleine-König
    Acked-By: David Daney
    Acked-by: Stephen Warren
    Signed-off-by: Mark Brown

    Axel Lin
     

13 Feb, 2014

1 commit


04 Dec, 2013

1 commit


06 Feb, 2013

2 commits


08 Dec, 2012

1 commit

  • CONFIG_HOTPLUG is going away as an option. As result the __dev*
    markings will be going away.

    Remove use of __devinit, __devexit_p, __devinitdata, __devinitconst,
    and __devexit.

    Bill Pemberton has done most of the legwork on this series. I've used
    his script to purge the attributes from the drivers/gpio tree.

    Reported-by: Bill Pemberton
    Signed-off-by: Grant Likely

    Grant Likely
     

23 Jul, 2012

1 commit

  • The external bus unit (EBU) found on the FALCON SoC has spi emulation that is
    designed for serial flash access. This driver has only been tested with m25p80
    type chips. The hardware has no support for other types of spi peripherals.

    Signed-off-by: Thomas Langer
    Signed-off-by: John Crispin
    Cc: spi-devel-general@lists.sourceforge.net
    Cc: linux-mips@linux-mips.org
    Acked-by: Grant Likely
    Patchwork: https://patchwork.linux-mips.org/patch/3844/
    Signed-off-by: Ralf Baechle

    Thomas Langer