17 Aug, 2010

1 commit


04 Aug, 2010

1 commit

  • Below you will find an updated version from the original series bunching all patches into one big patch
    updating broken web addresses that are located in Documentation/*
    Some of the addresses date as far far back as 1995 etc... so searching became a bit difficult,
    the best way to deal with these is to use web.archive.org to locate these addresses that are outdated.
    Now there are also some addresses pointing to .spec files some are located, but some(after searching
    on the companies site)where still no where to be found. In this case I just changed the address
    to the company site this way the users can contact the company and they can locate them for the users.

    Signed-off-by: Justin P. Mattock
    Signed-off-by: Thomas Weber
    Signed-off-by: Mike Frysinger
    Cc: Paulo Marques
    Cc: Randy Dunlap
    Cc: Michael Neuling
    Signed-off-by: Jiri Kosina

    Justin P. Mattock
     

23 Apr, 2010

1 commit


23 Jun, 2009

1 commit


13 Jun, 2009

1 commit


17 Apr, 2009

1 commit


11 Nov, 2008

1 commit

  • Commit d0fc2eaaf4c56a95f5ed29b6bfb609e19714fc16 "powerpc/fsl: Refactor
    device bindings" split out a number of device bindings from
    booting-without-of.txt into separate files. Having them all in one file
    was a frequent source of merge conflicts.

    However, in the next merge, 49997d75152b3d23c53b0fa730599f2f74c92c65, there
    was another conflict. Some of the bindings removed from
    booting-without-of.txt were mistakenly added back in and the copies in
    dts-bindings were kept as well.

    This patch re-removes "Freescale Display Interface" and "Freescale on board
    FPGA" and fixes the table of contents.

    Signed-off-by: Trent Piepho
    Signed-off-by: Kumar Gala

    Trent Piepho
     

21 Oct, 2008

1 commit


04 Aug, 2008

1 commit

  • from include/asm-powerpc. This is the result of a

    mkdir arch/powerpc/include/asm
    git mv include/asm-powerpc/* arch/powerpc/include/asm

    Followed by a few documentation/comment fixups and a couple of places
    where was being used explicitly. Of the latter only
    one was outside the arch code and it is a driver only built for powerpc.

    Signed-off-by: Stephen Rothwell
    Signed-off-by: Paul Mackerras

    Stephen Rothwell
     

27 Jul, 2008

1 commit


25 Jul, 2008

1 commit


22 Jul, 2008

2 commits


18 Jul, 2008

1 commit


17 Jul, 2008

2 commits


14 Jul, 2008

2 commits


11 Jun, 2008

1 commit


10 Jun, 2008

1 commit

  • GTM stands for General-purpose Timers Module and able to generate
    timer{1,2,3,4} interrupts. These timers are used by the drivers that
    need time precise interrupts (like for USB transactions scheduling for
    the Freescale USB Host controller as found in some QE and CPM chips),
    or these timers could be used as wakeup events from the CPU deep-sleep
    mode.

    Things unimplemented:
    1. Cascaded (32 bit) timers (1-2, 3-4).
    This is straightforward to implement when needed, two timers should
    be marked as "requested" and configured as appropriate.
    2. Super-cascaded (64 bit) timers (1-2-3-4).
    This is also straightforward to implement when needed, all timers
    should be marked as "requested" and configured as appropriate.

    Signed-off-by: Anton Vorontsov
    Signed-off-by: Kumar Gala

    Anton Vorontsov
     

03 Jun, 2008

2 commits


31 May, 2008

1 commit


28 Apr, 2008

1 commit

  • The following features are supported:
    plane 0 works as a regular frame buffer, can be accessed by /dev/fb0
    plane 1 has two AOIs (area of interest), can be accessed by /dev/fb1 and /dev/fb2
    plane 2 has two AOIs, can be accessed by /dev/fb3 and /dev/fb4
    Special ioctls support AOIs

    All /dev/fb* can be used as regular frame buffer devices, except hardware
    change can only be made through /dev/fb0. Changing pixel clock has no effect
    on other fbs.

    Limitation of usage of AOIs:
    AOIs on the same plane can not be horizonally overlapped
    AOIs have horizonal order, i.e. AOI0 should be always on top of AOI1
    AOIs can not beyond phisical display area. Application should check AOI geometry
    before changing physical resolution on /dev/fb0

    required command line parameters to preallocate memory for frame buffer diufb.

    optional command line parameters to set modes and monitor
    video=fslfb:[resolution][,bpp][,monitor]
    Syntax:

    Resolution
    xres x yres-bpp@refresh_rate, the -bpp and @refresh_rate are optional
    eg, 1024x768, 1280x1024, 1280x1024-32, 1280x1024@60, 1280x1024-32@60, 1280x480-32@60

    Bpp
    bpp=32, bpp=24, or bpp=16

    Monitor
    monitor=0, monitor=1, monitor=2
    0 is DVI
    1 is Single link LVDS
    2 is Double link LVDS

    Note: switching monitor is a board feather, not DIU feather. MPC8610HPCD has three
    monitor ports to swtich to. MPC5121ADS doesn't have additional monitor port. So switching
    monirot port for MPC5121ADS has no effect.

    If compiled as a module, it takes pamameters mode, bpp, monitor with the same syntax above.

    Signed-off-by: York Sun
    Signed-off-by: Timur Tabi
    Cc: Paul Mackerras
    Cc: Benjamin Herrenschmidt
    Cc: "Antonino A. Daplas"
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    York Sun
     

25 Apr, 2008

1 commit

  • The Xilinx 16550 uart core is not a standard 16550 because it uses
    word-based addressing rather than byte-based addressing. With
    additional properties it is compatible with the open firmware
    'ns16550' compatible binding.

    This code updates the of_serial driver to handle the reg-offset
    and reg-shift properties to enable this core to be used.

    Signed-off-by: John Linn
    Acked-by: Arnd Bergmann
    Signed-off-by: Josh Boyer

    John Linn
     

17 Apr, 2008

2 commits

  • - get rid of `model = "UCC"' in the ucc nodes
    It isn't used anywhere, so remove it. If we'll ever need something
    like this, we'll use compatible property instead.
    - replace last occurrences of device-id with cell-index.
    Drivers are modified for backward compatibility's sake.

    Signed-off-by: Anton Vorontsov
    Acked-by: Timur Tabi
    Signed-off-by: Kumar Gala

    Anton Vorontsov
     
  • This implements support for the GPIO LIB API. Two calls are still
    unimplemented though: irq_to_gpio and gpio_to_irq.

    Signed-off-by: Anton Vorontsov
    Acked-by: Grant Likely
    Signed-off-by: Paul Mackerras

    Anton Vorontsov
     

15 Apr, 2008

1 commit


26 Mar, 2008

1 commit

  • This patch alters the bootwrapper for a number of machines (roubhly
    all 4xx based cuboot or treeboot platforms) to use aliases instead of
    the linux,network-index hack to work out which MAC address to attach
    to which ethernet device node.

    The now obsolete linux,network-index properties are removed from the
    corresponding device trees. This won't break backwards compatiblity,
    because in cases where this fixup code is relevant, the device tree is
    part of the kernel image.

    The references to linux,network-index are removed from
    booting-without-of.txt. Not only is it now deprecated, but as a hack
    applicable only when the device tree blob and fixup code were in the
    same image, this property never belonged in booting-without-of.txt
    which describes the interface between the kernel and firmware or
    bootloaders which produce a device tree. By the time the device tree
    reaches the kernel, all the MAC addresses must be fully filled in.

    Signed-off-by: David Gibson
    Signed-off-by: Josh Boyer

    David Gibson
     

07 Feb, 2008

3 commits


28 Jan, 2008

4 commits


24 Jan, 2008

4 commits