Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for issue 21 on firmware repo #329

Closed
wants to merge 97 commits into from

Commits on Jul 3, 2013

  1. Main bcm2708 linux port

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    6080f53 View commit details
    Browse the repository at this point in the history
  2. Add dwc_otg driver

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    17f5dfb View commit details
    Browse the repository at this point in the history
  3. bcm2708 watchdog driver

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    08a588f View commit details
    Browse the repository at this point in the history
  4. bcm2708 framebuffer driver

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9aa24fa View commit details
    Browse the repository at this point in the history
  5. bcm2708 vchiq driver

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    0a4f13f View commit details
    Browse the repository at this point in the history
  6. cma: Add vc_cma driver to enable use of CMA

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    a2d8fae View commit details
    Browse the repository at this point in the history
  7. bcm2708: alsa sound driver

        Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9171ef8 View commit details
    Browse the repository at this point in the history
  8. Allow mac address to be set in smsc95xx

    Signed-off-by: popcornmix <[email protected]>
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    debf621 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b4a73b8 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    93779f0 View commit details
    Browse the repository at this point in the history
  11. sdhci-bcm2708: speed up DMA sync

    Experiments show that it doesn't really take that long to sync, so we
    can reduce the poll interval slightly. Might improve performance a bit.
    grigorig authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    c79be14 View commit details
    Browse the repository at this point in the history
  12. sdhci-bcm2708: remove custom clock handling

    The custom clock handling code is redundant and buggy. The MMC/SDHCI
    subsystem does a better job than it, so remove it for good.
    grigorig authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    7e3d10e View commit details
    Browse the repository at this point in the history
  13. sdhci-bcm2708: add additional quirks

    Some additional quirks are needed for correct operation.
    There's no SDHCI capabilities register documented, and it always reads
    zero, so add SDHCI_QUIRK_MISSING_CAPS. Apparently
    SDHCI_QUIRK_NO_HISPD_BIT is needed for many cards to work correctly in
    high-speed mode, so add it as well.
    grigorig authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    864e235 View commit details
    Browse the repository at this point in the history
  14. sdhci-bcm2708: add allow_highspeed parameter

    Add a parameter to disable high-speed mode for the few cards that
    still might have problems. High-speed mode is enabled by default.
    grigorig authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    f012cd2 View commit details
    Browse the repository at this point in the history
  15. sdhci-bcm2708: assume 50 MHz eMMC clock

    80 MHz clock isnt't suited well to be dividable to get SD clocks of 25
    MHz (default mode) or 50 MHz (high speed mode). 50 MHz are perfect to
    drive the SD interface at ideal frequencies.
    grigorig authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    de4d917 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ca9519b View commit details
    Browse the repository at this point in the history
  17. sdhci-bcm2708: raise DMA sync timeout

    Commit d64b84c by accident reduced the maximum overall DMA sync
    timeout. The maximum overall timeout was reduced from 100ms to 30ms,
    which isn't enough for many cards. Increase it to 150ms, just to be
    extra safe. According to commit 872a8ff in the MMC subsystem, some
    cards require crazy long timeouts (3s), but as we're busy-waiting,
    and shouldn't delay for such a long time, let's hope 150ms will be
    enough for most cards.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    68681c0 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    db66a7b View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    71392b4 View commit details
    Browse the repository at this point in the history
  20. Add SPI_SPI_DEV module

    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    30d5060 View commit details
    Browse the repository at this point in the history
  21. Fix for quitting X hang. Interrupted mailbox reads are not something …

    …we can reliably recover from, so down_interruptable is not a safe call.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    0139a2b View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    a53fbe6 View commit details
    Browse the repository at this point in the history
  23. sdhci-bcm2708: use extension FIFO to buffer DMA transfers

    The additional FIFO might speed up transfers in some cases.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    d55680e View commit details
    Browse the repository at this point in the history
  24. sdhci-bcm2708: use multiblock-type transfers for single blocks

    There are issues with both single block reads (missed completion)
    and writes (data loss in some cases!). Just don't do single block
    transfers anymore, and treat them like multiblock transfers. This
    adds a quirk for this and uses it.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    55cdffe View commit details
    Browse the repository at this point in the history
  25. Add module parameter for missing_status quirk. sdhci-bcm2708.missing_…

    …status=0 may improve interrupt latency
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    ce3c78e View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    6fa717a View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    eba5eb2 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    23effc5 View commit details
    Browse the repository at this point in the history
  29. Add low-latency mode to sdcard driver. Disable with sdhci-bcm2708.ena…

    …ble_llm=0. Thanks ddv2005.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    6bfb747 View commit details
    Browse the repository at this point in the history
  30. Add FIQ patch to dwc_otg driver. Enable with dwc_otg.fiq_fix_enable=1…

    …. Should give about 10% more ARM performance.
    
    Thanks to Gordon and Costas
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    56b675f View commit details
    Browse the repository at this point in the history
  31. Add non-mainline source for rtl8192cu wireless driver version 3.4.4_4…

    …749 as this is widely used. Disabled older rtlwifi driver
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9608c04 View commit details
    Browse the repository at this point in the history
  32. Add device ID (330d)

    grimjoey authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    ebeee46 View commit details
    Browse the repository at this point in the history
  33. Add verious user config requests.

    CONFIG_DEVTMPFS_MOUNT, CONFIG_NFS_V4_1=y CONFIG_NFSD_V3_ACL=y CONFIG_NFSD_V4=y, drbd and IPSEC modules
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    d2c50db View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    4188684 View commit details
    Browse the repository at this point in the history
  35. Add cpufreq driver

    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    f7ac5d2 View commit details
    Browse the repository at this point in the history
  36. Add NAK holdoff scheme. Enabled by default, disable with dwc_otg.nak_…

    …holdoff_enable=0. Thanks gsh
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9a13f81 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    8a29d2c View commit details
    Browse the repository at this point in the history
  38. Add config options for thermal sensor, L2TP, RT2800USB_UNKNOWN, and v…

    …arious I2C and SPI RTCs. Tidy of thermal driver.
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    f10623b View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    d7c871a View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    80027aa View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    c1d625a View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    c33b7bc View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    86cd954 View commit details
    Browse the repository at this point in the history
  44. Allow the number of cycles delay between sdcard peripheral writes to …

    …be specified on command line with sdhci-bcm2708.cycle_delay
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    dc1c709 View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    c372f2d View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    9578fd3 View commit details
    Browse the repository at this point in the history
  47. Lazy CRC quirk: Implemented retrying mechanisms for SD SSR and SCR, d…

    …isabled missing_status and spurious CRC ACMD51 quirks by default (should be fixed by the retrying-mechanishm)
    dero authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    321f91d View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    5fd69f8 View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    b243d68 View commit details
    Browse the repository at this point in the history
  50. Make sure we wait for the reset to finish

    Gordon Hollingworth authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    dafd5e9 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    cf9d136 View commit details
    Browse the repository at this point in the history
  52. lirc: added support for RaspberryPi GPIO

    Aron Szabo authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    6ffd272 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    bcf9c84 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    f7048aa View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    a49eddf View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    f5adca2 View commit details
    Browse the repository at this point in the history
  57. dwc_otg: fix bug in dwc_otg_hcd.c resulting in silent kernel

    	 memory corruption, escalating to OOPS under high USB load.
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    de86ee4 View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    f6156c2 View commit details
    Browse the repository at this point in the history
  59. spi/spi-bcm2708: respect per-transfer SPI clock speed_hz value

    The bcm2708 SPI driver's bcm2708_process_transfer() was ignoring the
    per-transfer speed_hz value even when it was provided (it always just
    used the spi device's max_speed_hz value).  Now, per-transfer speed_hz
    values are respected.
    
    Also added debug print to bcm2708_setup_state() to help keep an eye on
    the configured SPI parameters.
    
    Signed-off-by: Kamal Mostafa <[email protected]>
    kamalmostafa authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    3c635bd View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    43d6cf5 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    ee3463d View commit details
    Browse the repository at this point in the history
  62. Changed wording on logging. Previously, we received errors like this:

    mmc0: could read SD Status register (SSR) at the 3th attempt
    A more sensible response is now returned.
    A typo also fixed in comments.
    Technion authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9f3f173 View commit details
    Browse the repository at this point in the history
  63. dwc_otg: Fix unsafe access of QTD during URB enqueue

    In dwc_otg_hcd_urb_enqueue during qtd creation, it was possible that the
    transaction could complete almost immediately after the qtd was assigned
    to a host channel during URB enqueue, which meant the qtd pointer was no
    longer valid having been completed and removed. Usually, this resulted in
    an OOPS during URB submission. By predetermining whether transactions
    need to be queued or not, this unsafe pointer access is avoided.
    
    This bug was only evident on the Pi model A where a device was attached
    that had no periodic endpoints (e.g. USB pendrive or some wlan devices).
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    bbdfaf4 View commit details
    Browse the repository at this point in the history
  64. dwc_otg: Fix incorrect URB allocation error handling

    If the memory allocation for a dwc_otg_urb failed, the kernel would OOPS
    because for some reason a member of the *unallocated* struct was set to
    zero. Error handling changed to fail correctly.
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    f385db7 View commit details
    Browse the repository at this point in the history
  65. Added inverted transmitter support

    pjennings authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    9cb0f13 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    c332df8 View commit details
    Browse the repository at this point in the history
  67. dwc_otg: fix potential use-after-free case in interrupt handler

    If a transaction had previously aborted, certain interrupts are
    enabled to track error counts and reset where necessary. On IN
    endpoints the host generates an ACK interrupt near-simultaneously
    with completion of transfer. In the case where this transfer had
    previously had an error, this results in a use-after-free on
    the QTD memory space with a 1-byte length being overwritten to
    0x00.
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    01690a3 View commit details
    Browse the repository at this point in the history
  68. dwc_otg: add handling of SPLIT transaction data toggle errors

    Previously a data toggle error on packets from a USB1.1 device behind
    a TT would result in the Pi locking up as the driver never handled
    the associated interrupt. Patch adds basic retry mechanism and
    interrupt acknowledgement to cater for either a chance toggle error or
    for devices that have a broken initial toggle state (FT8U232/FT232BM).
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    d3ebe68 View commit details
    Browse the repository at this point in the history
  69. Add bitbanging pullups, use them for w1-gpio

    Allows parasite power to work, uses module option pullup=1
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    56cbbf3 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    8af17a0 View commit details
    Browse the repository at this point in the history
  71. dwc_otg: implement tasklet for returning URBs to usbcore hcd layer

    The dwc_otg driver interrupt handler for transfer completion will spend
    a very long time with interrupts disabled when a URB is completed -
    this is because usb_hcd_giveback_urb is called from within the handler
    which for a USB device driver with complicated processing (e.g. webcam)
    will take an exorbitant amount of time to complete. This results in
    missed completion interrupts for other USB packets which lead to them
    being dropped due to microframe overruns.
    
    This patch splits returning the URB to the usb hcd layer into a
    high-priority tasklet. This will have most benefit for isochronous IN
    transfers but will also have incidental benefit where multiple periodic
    devices are active at once.
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    ddd6ba1 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    6e4f91d View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    f33f65c View commit details
    Browse the repository at this point in the history
  74. dwc_otg: fix NAK holdoff and allow on split transactions only

    This corrects a bug where if a single active non-periodic endpoint
    had at least one transaction in its qh, on frnum == MAX_FRNUM the qh
    would get skipped and never get queued again. This would result in
    a silent device until error detection (automatic or otherwise) would
    either reset the device or flush and requeue the URBs.
    
    Additionally the NAK holdoff was enabled for all transactions - this
    would potentially stall a HS endpoint for 1ms if a previous error state
    enabled this interrupt and the next response was a NAK. Fix so that
    only split transactions get held off.
    P33M authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    f79f0fd View commit details
    Browse the repository at this point in the history
  75. Merge pull request raspberrypi#286 from martinezjavier/rpi-3.6.y-dev

    add mmap support and some cleanups to bcm2835 ALSA driver
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    4de35ed View commit details
    Browse the repository at this point in the history
  76. Add quick config.

    This is designed for quick compiling when developing.
    No modules are needed and it includes all Pi specific drivers
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    911b47b View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    aacfe85 View commit details
    Browse the repository at this point in the history
  78. Allow reboot=q on command line to set a flag that bootcode.bin can us…

    …e to boot from alternate partition
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    84d8066 View commit details
    Browse the repository at this point in the history
  79. Configuration menu
    Copy the full SHA
    2c3d71c View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    d88ada9 View commit details
    Browse the repository at this point in the history
  81. rtl8192cu: select required config options to allow builds without oth…

    …er wifi modules. Thanks UrsusArctos
    popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    13886e4 View commit details
    Browse the repository at this point in the history
  82. Configuration menu
    Copy the full SHA
    8b2532e View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    b87736e View commit details
    Browse the repository at this point in the history
  84. Speed up console framebuffer imageblit function

    Especially on platforms with a slower CPU but a relatively high
    framebuffer fill bandwidth, like current ARM devices, the existing
    console monochrome imageblit function used to draw console text is
    suboptimal for common pixel depths such as 16bpp and 32bpp. The existing
    code is quite general and can deal with several pixel depths. By creating
    special case functions for 16bpp and 32bpp, by far the most common pixel
    formats used on modern systems, a significant speed-up is attained
    which can be readily felt on ARM-based devices like the Raspberry Pi
    and the Allwinner platform, but should help any platform using the
    fb layer.
    
    The special case functions allow constant folding, eliminating a number
    of instructions including divide operations, and allow the use of an
    unrolled loop, eliminating instructions with a variable shift size,
    reducing source memory access instructions, and eliminating excessive
    branching. These unrolled loops also allow much better code optimization
    by the C compiler. The code that selects which optimized variant is used
    is also simplified, eliminating integer divide instructions.
    
    The speed-up, measured by timing 'cat file.txt' in the console, varies
    between 40% and 70%, when testing on the Raspberry Pi and Allwinner
    ARM-based platforms, depending on font size and the pixel depth, with
    the greater benefit for 32bpp.
    
    Signed-off-by: Harm Hanemaaijer <[email protected]>
    hglm authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    c9e3680 View commit details
    Browse the repository at this point in the history
  85. fbdev: add FBIOCOPYAREA ioctl

    Based on the patch authored by Ali Gholami Rudi at
        https://lkml.org/lkml/2009/7/13/153
    
    Provide an ioctl for userspace applications, but only if this operation
    is hardware accelerated (otherwide it does not make any sense).
    
    Signed-off-by: Siarhei Siamashka <[email protected]>
    ssvb authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    37fa288 View commit details
    Browse the repository at this point in the history
  86. bcm2708_fb: DMA acceleration for fb_copyarea

    Based on http://www.raspberrypi.org/phpBB3/viewtopic.php?p=62425#p62425
    Also used Simon's dmaer_master module as a reference for tweaking DMA
    settings for better performance.
    
    For now busylooping only. IRQ support might be added later.
    With non-overclocked Raspberry Pi, the performance is ~360 MB/s
    for simple copy or ~260 MB/s for two-pass copy (used when dragging
    windows to the right).
    
    In the case of using DMA channel 0, the performance improves
    to ~440 MB/s.
    
    For comparison, VFP optimized CPU copy can only do ~114 MB/s in
    the same conditions (hindered by reading uncached source buffer).
    
    Signed-off-by: Siarhei Siamashka <[email protected]>
    ssvb authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    511c5dd View commit details
    Browse the repository at this point in the history
  87. dwc_otg: Call usb_hcd_unlink_urb_from_ep with lock held in completion…

    … handler
    
    usb_hcd_unlink_urb_from_ep must be called with the HCD lock held.  Calling it
    asynchronously in the tasklet was not safe (regression in
    c4564d4).
    
    This change unlinks it from the endpoint prior to queueing it for handling in
    the tasklet, and also adds a check to ensure the urb is OK to be unlinked
    before doing so.
    
    NULL pointer dereference kernel oopses had been observed in usb_hcd_giveback_urb
    when a USB device was unplugged/replugged during data transfer.  This effect
    was reproduced using automated USB port power control, hundreds of replug
    events were performed during active transfers to confirm that the problem was
    eliminated.
    wmdb authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    44aa1f6 View commit details
    Browse the repository at this point in the history
  88. USB fix using a FIQ to implement split transactions

    This commit adds a FIQ implementaion that schedules
    the split transactions using a FIQ so we don't get
    held off by the interrupt latency of Linux
    Gordon Hollingworth authored and popcornmix committed Jul 3, 2013
    Configuration menu
    Copy the full SHA
    1fdd347 View commit details
    Browse the repository at this point in the history
  89. Configuration menu
    Copy the full SHA
    03c3eef View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    1c11989 View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    2fa497b View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2013

  1. Remove RTL8192CU driver

    popcornmix committed Jul 6, 2013
    Configuration menu
    Copy the full SHA
    dfa2d09 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2013

  1. Configuration menu
    Copy the full SHA
    0fdfdc6 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2013

  1. Merge pull request raspberrypi#328 from cybertronic/rpi-3.10.y

    Fix for deprecated/undefined create_proc_entry in RTL8192cu driver
    popcornmix committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    0fb7e65 View commit details
    Browse the repository at this point in the history
  2. sdhci-bcm2807: Increase sync_after_dma timeout

    The current timeout is being hit with some cards that complete successfully with a longer timeout.
    The timeout is not handled well, and is believed to be a code path that causes corruption.
    872a8ff suggests that crappy cards can take up to 3 seconds to respond
    popcornmix committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    3fa12cb View commit details
    Browse the repository at this point in the history
  3. Re-enable RTL8192CU driver

    popcornmix committed Jul 10, 2013
    Configuration menu
    Copy the full SHA
    4b61559 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2013

  1. this function appears to simply print things to the log, and crash ha…

    …rd, commenting it out solves the crash
    cleverca22 committed Jul 12, 2013
    Configuration menu
    Copy the full SHA
    9121f42 View commit details
    Browse the repository at this point in the history