1. 17 7月, 2012 1 次提交
  2. 20 6月, 2012 1 次提交
    • G
      Staging: add CSR Wifi "os helper" module · 15a4bc17
      Greg Kroah-Hartman 提交于
      This module is used by the CSR wifi driver to "abstract" away the
      OS-specific parts of core functions.  It will be eventually deleted, but
      for now is needed as the CSR driver relies on it.
      
      Cc: Mikko Virkkilä <mikko.virkkila@bluegiga.com>
      Cc: Lauri Hintsala <Lauri.Hintsala@bluegiga.com>
      Cc: Riku Mettälä <riku.mettala@bluegiga.com>
      Cc: Veli-Pekka Peltola <veli-pekka.peltola@bluegiga.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      15a4bc17
  3. 13 6月, 2012 1 次提交
  4. 16 5月, 2012 1 次提交
    • M
      staging: usb: gadget: Add Configurable Composite Gadget driver · 332bb43f
      Mike Lockwood 提交于
      The Configurable Gadget driver is a composite driver that allows
      userspace to change at runtime the list of functions enabled in
      its configuration and to configure these functions. It supports
      multiple functions: acm, rndis, and mass storage.
      
      It is usually controlled by a daemon that changes the configuration
      based on user settings. For example, rndis is enabled when the user
      enables sharing the phone data connection.
      
      As an example on how to use it, the following shell commands will
      make the gadget disconnect from the host and make it be re-enumerated
      as a composite with 1 rndis and 2 acm interfaces, and a different
      product id:
      
      echo 0       > /sys/class/ccg_usb/ccg0/enable
      echo rndis,acm > /sys/class/ccg_usb/ccg0/functions
      echo 2       > /sys/class/ccg_usb/ccg0/f_acm/instances
      echo -n 0x2d01 > /sys/module/g_ccg/parameters/idProduct
      echo 1       > /sys/class/ccg_usb/ccg0/enable
      
      The driver requires a gadget controller that supports software
      control of the D+ pullup and the controller driver must support
      disabling the pullup during composite_bind.
      Signed-off-by: NMike Lockwood <lockwood@android.com>
      Signed-off-by: NBenoit Goby <benoit@android.com>
      	[import from android.c, implement review comments, remove adb,mtp,ptp,accessory]
      Signed-off-by: NAndrzej Pietrasiewicz <andrzej.p@samsung.com>
      Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      332bb43f
  5. 15 5月, 2012 2 次提交
  6. 11 5月, 2012 1 次提交
  7. 10 5月, 2012 1 次提交
  8. 02 5月, 2012 1 次提交
  9. 27 4月, 2012 1 次提交
    • G
      Staging: VME: move VME drivers out of staging · db3b9e99
      Greg Kroah-Hartman 提交于
      This moves the VME core, VME board drivers, and VME bridge drivers out
      of the drivers/staging/vme/ area to drivers/vme/.
      
      The VME device drivers have not moved out yet due to some API questions
      they are still working through, that should happen soon, hopefully.
      
      Cc: Martyn Welch <martyn.welch@ge.com>
      Cc: Manohar Vanga <manohar.vanga@cern.ch>
      Cc: Vincent Bossier <vincent.bossier@gmail.com>
      Cc: "Emilio G. Cota" <cota@braap.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      db3b9e99
  10. 14 4月, 2012 1 次提交
  11. 11 4月, 2012 1 次提交
  12. 22 3月, 2012 1 次提交
  13. 25 2月, 2012 1 次提交
  14. 16 2月, 2012 1 次提交
  15. 14 2月, 2012 1 次提交
  16. 11 2月, 2012 1 次提交
  17. 09 2月, 2012 5 次提交
  18. 09 12月, 2011 2 次提交
  19. 30 11月, 2011 1 次提交
  20. 29 11月, 2011 1 次提交
  21. 27 11月, 2011 2 次提交
    • R
      staging: add omapdrm DRM/KMS driver for TI OMAP platforms · cd5351f4
      Rob Clark 提交于
      A DRM display driver for TI OMAP platform.  Similar to omapfb (fbdev)
      and omap_vout (v4l2 display) drivers in the past, this driver uses the
      DSS2 driver to access the display hardware, including support for
      HDMI, DVI, and various types of LCD panels.  And it implements GEM
      support for buffer allocation (for KMS as well as offscreen buffers
      used by the xf86-video-omap userspace xorg driver).
      
      The driver maps CRTCs to overlays, encoders to overlay-managers, and
      connectors to dssdev's.  Note that this arrangement might change slightly
      when support for drm_plane overlays is added.
      
      For GEM support, non-scanout buffers are using the shmem backed pages
      provided by GEM core (In drm_gem_object_init()).  In the case of scanout
      buffers, which need to be physically contiguous, those are allocated
      with CMA and use drm_gem_private_object_init().
      
      See userspace xorg driver:
      git://github.com/robclark/xf86-video-omap.git
      
      Refer to this link for CMA (Continuous Memory Allocator):
      http://lkml.org/lkml/2011/8/19/302
      
      Links to previous versions of the patch:
      v1: http://lwn.net/Articles/458137/
      v2: http://patches.linaro.org/4156/
      v3: http://patches.linaro.org/4688/
      v4: http://patches.linaro.org/4791/
      
      History:
      
      v5: move headers from include/drm at Greg KH's request, minor rebasing
          on 3.2-rc1, pull in private copies of drm_gem_{get,put}_pages()
          because "drm/gem: add functions to get/put pages" patch is not
          merged yet
      v4: bit of rework of encoder/connector _dpms() code, modeset_init()
          rework to not use nested functions, update TODO.txt
      v3: minor cleanups, improved error handling for dev_load(), some minor
          API changes that will be needed later for tiled buffer support
      v2: replace omap_vram with CMA for scanout buffer allocation, remove
          unneeded functions, use dma_addr_t for physical addresses, error
          handling cleanup, refactor attach/detach pages into common drm
          functions, split non-userspace-facing API into omap_priv.h, remove
          plugin API
      
      v1: original
      Signed-off-by: NRob Clark <rob@ti.com>
      Acked-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      cd5351f4
    • G
      Staging: delete spectra driver · be7f39c5
      Greg Kroah-Hartman 提交于
      To quote Alan:
      	Moorestown/Oaktrail has appeared only in the PC like form so the
      	following bits of staging can be binned:
      
      	drivers/staging/spectra
      
      so let's delete it.
      
      Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      be7f39c5
  22. 03 11月, 2011 3 次提交
  23. 12 10月, 2011 2 次提交
  24. 11 10月, 2011 1 次提交
  25. 24 9月, 2011 1 次提交
  26. 23 9月, 2011 2 次提交
  27. 24 8月, 2011 2 次提交
  28. 14 8月, 2011 1 次提交