04 Jan, 2013

1 commit

  • CONFIG_HOTPLUG is going away as an option. As a result, the __dev*
    markings need to be removed.

    This change removes the use of __devinit, __devexit_p, and __devexit
    from these drivers.

    Based on patches originally written by Bill Pemberton, but redone by me
    in order to handle some of the coding style issues better, by hand.

    Cc: Bill Pemberton
    Cc: David Woodhouse
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

22 Nov, 2012

3 commits


10 Jan, 2012

1 commit


11 Sep, 2011

4 commits


25 May, 2011

1 commit


01 Mar, 2011

1 commit


25 Oct, 2010

2 commits

  • This patch adds the appropriate conversions to correct the endianness
    issues in the MTD driver whenever it accesses the device tree (which is
    always big endian).

    Signed-off-by: Ian Munsie
    Signed-off-by: Artem Bityutskiy
    Signed-off-by: David Woodhouse

    Ian Munsie
     
  • Fix the build warning:

    drivers/mtd/nand/fsl_upm.c: In function 'fun_chip_init':
    drivers/mtd/nand/fsl_upm.c:190: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'resource_size_t'

    Signed-off-by: Roy Zang
    Signed-off-by: Artem Bityutskiy
    Signed-off-by: David Woodhouse

    Roy Zang
     

06 Aug, 2010

1 commit

  • of_device is just an alias for platform_device, so remove it entirely. Also
    replace to_of_device() with to_platform_device() and update comment blocks.

    This patch was initially generated from the following semantic patch, and then
    edited by hand to pick up the bits that coccinelle didn't catch.

    @@
    @@
    -struct of_device
    +struct platform_device

    Signed-off-by: Grant Likely
    Reviewed-by: David S. Miller

    Grant Likely
     

03 Jun, 2010

1 commit


22 May, 2010

2 commits

  • Merging in current state of Linus' tree to deal with merge conflicts and
    build failures in vio.c after merge.

    Conflicts:
    drivers/i2c/busses/i2c-cpm.c
    drivers/i2c/busses/i2c-mpc.c
    drivers/net/gianfar.c

    Also fixed up one line in arch/powerpc/kernel/vio.c to use the
    correct node pointer.

    Signed-off-by: Grant Likely

    Grant Likely
     
  • .name, .match_table and .owner are duplicated in both of_platform_driver
    and device_driver. This patch is a removes the extra copies from struct
    of_platform_driver and converts all users to the device_driver members.

    This patch is a pretty mechanical change. The usage model doesn't change
    and if any drivers have been missed, or if anything has been fixed up
    incorrectly, then it will fail with a compile time error, and the fixup
    will be trivial. This patch looks big and scary because it touches so
    many files, but it should be pretty safe.

    Signed-off-by: Grant Likely
    Acked-by: Sean MacLennan

    Grant Likely
     

10 May, 2010

2 commits


30 Mar, 2010

1 commit

  • …it slab.h inclusion from percpu.h

    percpu.h is included by sched.h and module.h and thus ends up being
    included when building most .c files. percpu.h includes slab.h which
    in turn includes gfp.h making everything defined by the two files
    universally available and complicating inclusion dependencies.

    percpu.h -> slab.h dependency is about to be removed. Prepare for
    this change by updating users of gfp and slab facilities include those
    headers directly instead of assuming availability. As this conversion
    needs to touch large number of source files, the following script is
    used as the basis of conversion.

    http://userweb.kernel.org/~tj/misc/slabh-sweep.py

    The script does the followings.

    * Scan files for gfp and slab usages and update includes such that
    only the necessary includes are there. ie. if only gfp is used,
    gfp.h, if slab is used, slab.h.

    * When the script inserts a new include, it looks at the include
    blocks and try to put the new include such that its order conforms
    to its surrounding. It's put in the include block which contains
    core kernel includes, in the same order that the rest are ordered -
    alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
    doesn't seem to be any matching order.

    * If the script can't find a place to put a new include (mostly
    because the file doesn't have fitting include block), it prints out
    an error message indicating which .h file needs to be added to the
    file.

    The conversion was done in the following steps.

    1. The initial automatic conversion of all .c files updated slightly
    over 4000 files, deleting around 700 includes and adding ~480 gfp.h
    and ~3000 slab.h inclusions. The script emitted errors for ~400
    files.

    2. Each error was manually checked. Some didn't need the inclusion,
    some needed manual addition while adding it to implementation .h or
    embedding .c file was more appropriate for others. This step added
    inclusions to around 150 files.

    3. The script was run again and the output was compared to the edits
    from #2 to make sure no file was left behind.

    4. Several build tests were done and a couple of problems were fixed.
    e.g. lib/decompress_*.c used malloc/free() wrappers around slab
    APIs requiring slab.h to be added manually.

    5. The script was run on all .h files but without automatically
    editing them as sprinkling gfp.h and slab.h inclusions around .h
    files could easily lead to inclusion dependency hell. Most gfp.h
    inclusion directives were ignored as stuff from gfp.h was usually
    wildly available and often used in preprocessor macros. Each
    slab.h inclusion directive was examined and added manually as
    necessary.

    6. percpu.h was updated not to include slab.h.

    7. Build test were done on the following configurations and failures
    were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
    distributed build env didn't work with gcov compiles) and a few
    more options had to be turned off depending on archs to make things
    build (like ipr on powerpc/64 which failed due to missing writeq).

    * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
    * powerpc and powerpc64 SMP allmodconfig
    * sparc and sparc64 SMP allmodconfig
    * ia64 SMP allmodconfig
    * s390 SMP allmodconfig
    * alpha SMP allmodconfig
    * um on x86_64 SMP allmodconfig

    8. percpu.h modifications were reverted so that it could be applied as
    a separate patch and serve as bisection point.

    Given the fact that I had only a couple of failures from tests on step
    6, I'm fairly confident about the coverage of this conversion patch.
    If there is a breakage, it's likely to be something in one of the arch
    headers which should be easily discoverable easily on most builds of
    the specific arch.

    Signed-off-by: Tejun Heo <tj@kernel.org>
    Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
    Cc: Ingo Molnar <mingo@redhat.com>
    Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>

    Tejun Heo
     

25 Feb, 2010

1 commit

  • The match_table field of the struct of_device_id is constant in
    so it is worth to make xps2_of_match also constant.

    The semantic match that finds this kind of pattern is as follows:
    (http://coccinelle.lip6.fr/)

    //
    @r@
    disable decl_init,const_decl_init;
    identifier I1, I2, x;
    @@
    struct I1 {
    ...
    const struct I2 *x;
    ...
    };
    @s@
    identifier r.I1, y;
    identifier r.x, E;
    @@
    struct I1 y = {
    .x = E,
    };
    @c@
    identifier r.I2;
    identifier s.E;
    @@
    const struct I2 E[] = ... ;
    @depends on !c@
    identifier r.I2;
    identifier s.E;
    @@
    + const
    struct I2 E[] = ...;
    //

    Signed-off-by: Márton Németh
    Cc: Julia Lawall
    Cc: cocci@diku.dk
    Signed-off-by: Artem Bityutskiy
    Signed-off-by: David Woodhouse

    Márton Németh
     

01 Jan, 2010

1 commit


30 Nov, 2009

1 commit


06 Apr, 2009

2 commits

  • The NAND flash on the TQM8548_BE modules requires a short delay after
    running the UPM pattern. The TQM8548_BE requires a further short delay
    after writing out a buffer. Normally the R/B pin should be checked, but
    it's not connected on the TQM8548_BE. The existing driver uses similar
    fixed delay points. To manage these extra delays in a more general way,
    I introduced the "fsl,ump-wait-flags" property allowing the board-
    specific driver to specify various types of extra delay.

    Signed-off-by: Wolfgang Grandegger
    Acked-by: Anton Vorontsov
    Signed-off-by: David Woodhouse

    Wolfgang Grandegger
     
  • This patch adds support for multi-chip NAND devices to the FSL-UPM
    driver. This requires support for multiple GPIOs for the RNB pins.
    The NAND chips are selected through address lines defined by the
    FDT property "fsl,upm-addr-line-cs-offsets".

    Signed-off-by: Wolfgang Grandegger
    Acked-by: Anton Vorontsov
    Signed-off-by: David Woodhouse

    Wolfgang Grandegger
     

07 Jan, 2009

1 commit


27 Nov, 2008

1 commit

  • The patch fixes following build error:

    CC drivers/mtd/nand/fsl_upm.o
    drivers/mtd/nand/fsl_upm.c: In function 'fun_chip_init':
    drivers/mtd/nand/fsl_upm.c:168: warning: passing argument 2 of 'of_mtd_parse_partitions' from incompatible pointer type
    drivers/mtd/nand/fsl_upm.c:168: warning: passing argument 3 of 'of_mtd_parse_partitions' from incompatible pointer type
    drivers/mtd/nand/fsl_upm.c:168: error: too many arguments to function 'of_mtd_parse_partitions'
    make[1]: *** [drivers/mtd/nand/fsl_upm.o] Error 1

    The breakage was introduced in 69fd3a8d098faf41a04930afa83757c0555ee360
    ("[MTD] remove unused mtd parameter in of_mtd_parse_partitions()").

    While at it, also add a check for the of_mtd_parse_partitions() return
    value.

    Signed-off-by: Wolfgang Grandegger
    Signed-off-by: Anton Vorontsov
    Signed-off-by: Andrew Morton
    Signed-off-by: David Woodhouse

    Wolfgang Grandegger
     

10 Oct, 2008

2 commits

  • This patch extends the FSL UPM NAND driver from Anton Vorontsov to
    support hardware which does not have the R/B pin of the NAND chip
    connected, like the TQM8548 module:

    - The OF_GPIO dependency has been removed from the Kconfig option
    because GPIO is not needed. The relevant gpio_* function are then
    stubbed out in .

    - It re-introduces the chip-delay property to define an appropriate
    maximum delay time (tR) required for read operations. The binding
    will be documented in a separate patch.

    Signed-off-by: Wolfgang Grandegger
    Signed-off-by: David Woodhouse

    Wolfgang Grandegger
     
  • - Get rid of fsl,wait-pattern and fsl,wait-write. I think this isn't
    chip-specific, and we should always do waits. I saw one board that
    didn't need fsl,wait-pattern, but I assume this was the exception
    that proves the rule;
    - Get rid of chip-delay. Today there are no users for this, and if
    anyone really need this they should push the OF bindings beforehand;
    - Now flash chips should be child nodes of the FSL UPM NAND controller;
    - Implement OF partition parsing.

    Signed-off-by: Anton Vorontsov
    Signed-off-by: David Woodhouse

    Anton Vorontsov
     

23 Apr, 2008

1 commit

  • This is very simple driver, NAND is connected through localbus,
    and User-Programmable Machine is doing various adjustments to
    speak NAND. No special efforts needed to do read and write cycles,
    though to control ALE and CLE phases, we ask UPM to generate exact
    pre-programmed signals on the localbus lines.

    Signed-off-by: Anton Vorontsov
    Signed-off-by: David Woodhouse

    Anton Vorontsov