aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2010-03-29 19:38:00 +0200
committerJesse Barnes <jbarnes@virtuousgeek.org>2010-05-11 12:01:10 -0700
commit8b6d043b7ee2d1b819dc833d677ea2aead71a0c0 (patch)
tree757e0be31fc4951d6e0688191a929542751d6e49 /README
parentd19f61f098ae9315b76a97962007f687683916d4 (diff)
downloadkernel_samsung_smdk4412-8b6d043b7ee2d1b819dc833d677ea2aead71a0c0.tar.gz
kernel_samsung_smdk4412-8b6d043b7ee2d1b819dc833d677ea2aead71a0c0.tar.bz2
kernel_samsung_smdk4412-8b6d043b7ee2d1b819dc833d677ea2aead71a0c0.zip
resource: shared I/O region support
SuperIO devices share regions and use lock/unlock operations to chip select. We therefore need to be able to request a resource and wait for it to be freed by whichever other SuperIO device currently hogs it. Right now you have to poll which is horrible. Add a MUXED field to IO port resources. If the MUXED field is set on the resource and on the request (via request_muxed_region) then we block until the previous owner of the muxed resource releases their region. This allows us to implement proper resource sharing and locking for superio chips using code of the form enable_my_superio_dev() { request_muxed_region(0x44, 0x02, "superio:watchdog"); outb() ..sequence to enable chip } disable_my_superio_dev() { outb() .. sequence of disable chip release_region(0x44, 0x02); } Signed-off-by: Giel van Schijndel <me@mortis.eu> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'README')
0 files changed, 0 insertions, 0 deletions