25 Dec, 2012

1 commit

  • Now that the only field in struct sys_timer is .init, delete the struct,
    and replace the machine descriptor .timer field with the initialization
    function itself.

    This will enable moving timer drivers into drivers/clocksource without
    having to place a public prototype of each struct sys_timer object into
    include/linux; the intent is to create a single of_clocksource_init()
    function that determines which timer driver to initialize by scanning
    the device dtree, much like the proposed irqchip_init() at:
    http://www.spinics.net/lists/arm-kernel/msg203686.html

    Includes mach-omap2 fixes from Igor Grinberg.

    Tested-by: Robert Jarzmik
    Signed-off-by: Stephen Warren

    Stephen Warren
     

05 Jan, 2012

1 commit


22 Aug, 2011

1 commit


04 Mar, 2011

1 commit


20 Oct, 2010

1 commit

  • Since we're now using addruart to establish the debug mapping, we can
    remove the io_pg_offst and phys_io members of struct machine_desc.

    The various declarations were removed using the following script:

    grep -rl MACHINE_START arch/arm | xargs \
    sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'

    [ Initial patch was from Jeremy Kerr, example script from Russell King ]

    Signed-off-by: Nicolas Pitre
    Acked-by: Eric Miao

    Nicolas Pitre
     

24 Feb, 2010

1 commit

  • * Modification of Kconfig to add the Option
    * 1 new file : buffalo-wxl-setup.c
    This file is inspired from the db-78xx0-setup.c already present.
    The following is done:
    - Configure MPP Lines for the plateform (see my patch for MPP)
    This is taken from the stock kernel provided by buffalotech (the vendor)
    - GigaBit Ethernet
    - Sata
    - Uart are initiallized in a different way than on the dev board as we
    have one core only.
    - USB

    The kernel has been running for some days now on my plateform.

    Signed-off-by: Sebastien Requiem
    Signed-off-by: Nicolas Pitre

    Sebastien Requiem