24 Aug, 2008

1 commit


17 Aug, 2008

1 commit

  • The drivers below do not use LINUX_VERSION_CODE nor KERNEL_VERSION.
    drivers/char/pcmcia/ipwireless/tty.c
    drivers/char/synclink_gt.c
    drivers/char/xilinx_hwicap/xilinx_hwicap.c

    This patch removes the said #include .

    Signed-off-by: Huang Weiyi
    Signed-off-by: Linus Torvalds

    Huang Weiyi
     

26 Jul, 2008

1 commit


22 Jul, 2008

1 commit


21 Jun, 2008

1 commit


02 May, 2008

1 commit

  • arch/powerpc/sysdev/xilinx_intc.c: In function 'xilinx_intc_init':
    arch/powerpc/sysdev/xilinx_intc.c:111: warning: format '%08X' expects type 'unsigned int', but argument 2 has type 'resource_size_t'
    drivers/char/xilinx_hwicap/xilinx_hwicap.c: In function 'hwicap_setup':
    drivers/char/xilinx_hwicap/xilinx_hwicap.c:626: warning: cast to pointer from integer of different size
    drivers/char/xilinx_hwicap/xilinx_hwicap.c:646: warning: format '%x' expects type 'unsigned int', but argument 6 has type 'resource_size_t'

    Signed-off-by: Kumar Gala

    Kumar Gala
     

24 Apr, 2008

1 commit

  • This patch fixes the following build error:

    ...
    CC [M] drivers/char/xilinx_hwicap/xilinx_hwicap.o
    ...
    /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/char/xilinx_hwicap/xilinx_hwicap.c:806: error: hwicap_of_match causes a section type conflict
    /home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/char/xilinx_hwicap/xilinx_hwicap.c:806: error: hwicap_of_match causes a section type conflict
    make[4]: *** [drivers/char/xilinx_hwicap/xilinx_hwicap.o] Error 1

    Signed-off-by: Adrian Bunk
    Signed-off-by: Paul Mackerras

    Adrian Bunk
     

26 Mar, 2008

3 commits

  • Major 259 has been assigned by lanana. Use it. Also, publish
    /dev/icap[0-k] as the device entries, and register platform devices
    named 'icap' to be consistent.

    Signed-off-by: Stephen Neuendorffer
    Acked-by: Grant Likely
    Signed-off-by: Josh Boyer

    Stephen Neuendorffer
     
  • It appears that in some cases, the sync word might not be recognized
    by the hardware correctly. If this happens, then attempting to read
    from the port results in an unrecoverable error because of the design
    of the FPGA core. This patch updates the code to check the status of
    the device before reading the IDCODE, in order to avoid entering this
    unrecoverable state. This patch also adds additional NOOP commands
    into the sychronization sequence, which appears to be necessary to
    avoid the condition on some hardware.

    Signed-off-by: Stephen Neuendorffer
    Acked-by: Grant Likely
    Signed-off-by: Josh Boyer

    Stephen Neuendorffer
     
  • Both the buffer-based and fifo-based icap cores have a status
    register. Previously, this was only used internally to check whether
    transactions have completed. However, the status can be useful to the
    main driver as well. This patch exposes these status functions to the
    main driver along with some masks for the differnet bits.

    Signed-off-by: Stephen Neuendorffer
    Acked-by: Grant Likely
    Signed-off-by: Josh Boyer

    Stephen Neuendorffer
     

29 Feb, 2008

1 commit

  • This fixes various items pointed out during a review of the hwicap driver.
    Primarily, reversed memcpy calls, re-entrancy issues, and mutex conversion
    have been addressed. There are also fixes to comments to use the kerneldoc
    format, as well as some sparse annotations.

    Signed-off-by: Stephen Neuendorffer
    Acked-by: Grant Likely
    Signed-off-by: Josh Boyer

    Stephen Neuendorffer
     

07 Feb, 2008

1 commit

  • This includes code for new fifo-based xps_hwicap in addition to the
    older opb_hwicap, which has a significantly different interface. The
    common code between the two drivers is largely shared.

    Significant differences exists between this driver and what is
    supported in the EDK drivers. In particular, most of the
    architecture-specific code for reconfiguring individual FPGA resources
    has been removed. This functionality is likely better provided in a
    user-space support library. In addition, read and write access is
    supported. In addition, although the xps_hwicap cores support
    interrupt-driver mode, this driver only supports polled operation, in
    order to make the code simpler, and since the interrupt processing
    overhead is likely to slow down the throughput under Linux.

    Signed-off-by: Stephen Neuendorffer
    Signed-off-by: Grant Likely

    Stephen Neuendorffer