12 Oct, 2007

1 commit

  • * 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (408 commits)
    [POWERPC] Add memchr() to the bootwrapper
    [POWERPC] Implement logging of unhandled signals
    [POWERPC] Add legacy serial support for OPB with flattened device tree
    [POWERPC] Use 1TB segments
    [POWERPC] XilinxFB: Allow fixed framebuffer base address
    [POWERPC] XilinxFB: Add support for custom screen resolution
    [POWERPC] XilinxFB: Use pdata to pass around framebuffer parameters
    [POWERPC] PCI: Add 64-bit physical address support to setup_indirect_pci
    [POWERPC] 4xx: Kilauea defconfig file
    [POWERPC] 4xx: Kilauea DTS
    [POWERPC] 4xx: Add AMCC Kilauea eval board support to platforms/40x
    [POWERPC] 4xx: Add AMCC 405EX support to cputable.c
    [POWERPC] Adjust TASK_SIZE on ppc32 systems to 3GB that are capable
    [POWERPC] Use PAGE_OFFSET to tell if an address is user/kernel in SW TLB handlers
    [POWERPC] 85xx: Enable FP emulation in MPC8560 ADS defconfig
    [POWERPC] 85xx: Killed
    [POWERPC] 85xx: Add cpm nodes for 8541/8555 CDS
    [POWERPC] 85xx: Convert mpc8560ads to the new CPM binding.
    [POWERPC] mpc8272ads: Remove muram from the CPM reg property.
    [POWERPC] Make clockevents work on PPC601 processors
    ...

    Fixed up conflict in Documentation/powerpc/booting-without-of.txt manually.

    Linus Torvalds
     

11 Oct, 2007

2 commits

  • We now have struct net_device_stats embedded in struct net_device,
    and the default ->get_stats() hook does the obvious thing for us.

    Run through drivers/net/* and remove the driver-local storage of
    statistics, and driver-local ->get_stats() hook where applicable.

    This was just the low-hanging fruit in drivers/net; plenty more drivers
    remain to be updated.

    [ Resolved conflicts with napi_struct changes and fix sunqe build
    regression... -DaveM ]

    Signed-off-by: Jeff Garzik
    Signed-off-by: David S. Miller

    Jeff Garzik
     
  • Several devices have multiple independant RX queues per net
    device, and some have a single interrupt doorbell for several
    queues.

    In either case, it's easier to support layouts like that if the
    structure representing the poll is independant from the net
    device itself.

    The signature of the ->poll() call back goes from:

    int foo_poll(struct net_device *dev, int *budget)

    to

    int foo_poll(struct napi_struct *napi, int budget)

    The caller is returned the number of RX packets processed (or
    the number of "NAPI credits" consumed if you want to get
    abstract). The callee no longer messes around bumping
    dev->quota, *budget, etc. because that is all handled in the
    caller upon return.

    The napi_struct is to be embedded in the device driver private data
    structures.

    Furthermore, it is the driver's responsibility to disable all NAPI
    instances in it's ->stop() device close handler. Since the
    napi_struct is privatized into the driver's private data structures,
    only the driver knows how to get at all of the napi_struct instances
    it may have per-device.

    With lots of help and suggestions from Rusty Russell, Roland Dreier,
    Michael Chan, Jeff Garzik, and Jamal Hadi Salim.

    Bug fixes from Thomas Graf, Roland Dreier, Peter Zijlstra,
    Joseph Fannin, Scott Wood, Hans J. Koch, and Michael Chan.

    [ Ported to current tree and all drivers converted. Integrated
    Stephen's follow-on kerneldoc additions, and restored poll_list
    handling to the old style to fix mutual exclusion issues. -DaveM ]

    Signed-off-by: Stephen Hemminger
    Signed-off-by: David S. Miller

    Stephen Hemminger
     

08 Oct, 2007

1 commit

  • This patch makes numerous miscellaneous code improvements to the QE library.

    1. Remove struct ucc_common and merge ucc_init_guemr() into ucc_set_type()
    (every caller of ucc_init_guemr() also calls ucc_set_type()). Modify all
    callers of ucc_set_type() accordingly.

    2. Remove the unused enum ucc_pram_initial_offset.

    3. Refactor qe_setbrg(), also implement work-around for errata QE_General4.

    4. Several printk() calls were missing the terminating \n.

    5. Add __iomem where needed, and change u16 to __be16 and u32 to __be32 where
    appropriate.

    6. In ucc_slow_init() the RBASE and TBASE registers in the PRAM were programmed
    with the wrong value.

    7. Add the protocol type to struct us_info and updated ucc_slow_init() to
    use it, instead of always programming QE_CR_PROTOCOL_UNSPECIFIED.

    8. Rename ucc_slow_restart_x() to ucc_slow_restart_tx()

    9. Add several macros in qe.h (mostly for slow UCC support, but also to
    standardize some naming convention) and remove several unused macros.

    10. Update ucc_geth.c to use the new macros.

    11. Add ucc_slow_info.protocol to specify which QE_CR_PROTOCOL_xxx protcol
    to use when initializing the UCC in ucc_slow_init().

    12. Rename ucc_slow_pram.rfcr to rbmr and ucc_slow_pram.tfcr to tbmr, since
    these are the real names of the registers.

    13. Use the setbits, clrbits, and clrsetbits where appropriate.

    14. Refactor ucc_set_qe_mux_rxtx().

    15. Remove all instances of 'volatile'.

    16. Simplify get_cmxucr_reg();

    17. Replace qe_mux.cmxucrX with qe_mux.cmxucr[].

    18. Updated struct ucc_geth because struct ucc_fast is not padded any more.

    Signed-off-by: Timur Tabi
    Signed-off-by: Kumar Gala

    Timur Tabi
     

25 Jul, 2007

1 commit


28 Apr, 2007

3 commits

  • The rx interrupt coalescing table alignment was "guessed" to be 4,
    but should be 64. The size should be 8 * number of queues + 4.
    Verified in the MPC8323E manual.

    Signed-off-by: Michael Barkowski
    Signed-off-by: Kim Phillips
    Signed-off-by: Jeff Garzik

    Michael Barkowski
     
  • Based partly on the gianfar driver, this patch fixes several
    bugs which were causing NAPI to be completely unusable.
    * An IRQ is still needed in NAPI, to kick off NAPI task,
    and for Tx processing. Request the IRQ.
    * If rx_work_limit = 0 we are not complete.
    * While running Rx NAPI processing we must mask Rx events,
    including Rx busy.
    * ucc_geth_rx function does not need a lock.
    Could lead to deadlock in NAPI case.
    * There's no need to loop reading ucce multiple times in the ISR,
    so while adding the call to schedule NAPI which was not there,
    simplify the event processing into if-else format.
    * Rx Busy now kicks off NAPI processing, while still
    being counted as an error.

    Signed-off-by: Michael Reiss
    Signed-off-by: Michael Barkowski
    Signed-off-by: Kim Phillips
    Signed-off-by: Jeff Garzik

    Michael Reiss
     
  • migrate ucc_geth to use the common phylib code.

    There are several side effects from doing this:

    o deprecate 'interface' property specification present
    in some old device tree source files in
    favour of a split 'max-speed' and 'interface-type'
    description to appropriately match definitions
    in include/linux/phy.h. Note that 'interface' property
    is still honoured if max-speed or interface-type
    are not present (backward compatible).
    o compile-time CONFIG_UGETH_HAS_GIGA is eliminated
    in favour of probe time speed derivation logic.
    o adjust_link streamlined to only operate on maccfg2
    and upsmr.r10m, instead of reapplying static initial
    values related to the interface-type.
    o Addition of UEC MDIO of_platform driver requires
    platform code add 'mdio' type to id list
    prior to calling of_platform_bus_probe (separate patch).
    o ucc_struct_init introduced to reduce ucc_geth_startup
    complexity.

    Signed-off-by: Li Yang
    Signed-off-by: Kim Phillips
    Signed-off-by: Jeff Garzik

    Kim Phillips
     

22 Oct, 2006

1 commit

  • changes due to qe_lib changes include:

    o removed inclusion of platform header file
    o removed platform_device code, replaced with of_device
    o removed typedefs
    o uint -> u32 conversions
    o removed following defines:
    QE_SIZEOF_BD, BD_BUFFER_ARG, BD_BUFFER_CLEAR, BD_BUFFER,
    BD_STATUS_AND_LENGTH_SET, BD_STATUS_AND_LENGTH, and BD_BUFFER_SET
    because they hid sizeof/in_be32/out_be32 operations from the reader.
    o removed irrelevant comments, added others to resemble removed BD_ defines
    o const'd and uncasted all get_property() assignments

    bugfixes, courtesy of Scott Wood, include:

    - Read phy_address as a u32, not u8.
    - Match on type == "network" as well as compatible == "ucc_geth", as
    device_is_compatible() will only compare up to the length of the
    test string, allowing "ucc_geth_phy" to match as well.
    - fixes the MAC setting code in ucc_geth.c. The old code was overwriting and dereferencing random stack contents.

    Signed-off-by: Li Yang
    Signed-off-by: Kim Phillips
    Signed-off-by: Scott Wood
    Signed-off-by: Jeff Garzik

    Li Yang
     

20 Aug, 2006

1 commit

  • QE(QUICC Engine) is a new generation communication coprocessor, which can
    be found on some of the latest Freescale PowerQUICC CPUs(e.g. MPC8360).
    The UCC(Unified Communications Controller) module of QE can work as gigabit
    Ethernet device. This patch provides driver for the device.

    Signed-off-by: Shlomi Gridish
    Signed-off-by: Li Yang
    Signed-off-by: Andrew Morton
    Signed-off-by: Jeff Garzik

    Li Yang