From: David Cross Date: Wed, 6 Oct 2010 01:48:08 +0000 (-0700) Subject: staging: west bridge, addition of common lock on cyasdevice X-Git-Tag: v2.6.37-rc1~60^2~3^2~319 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54930e889238200d82d3a35cc12fae4b5f5c22f5;p=profile%2Fivi%2Fkernel-x86-ivi.git staging: west bridge, addition of common lock on cyasdevice This patch adds and initializes a common lock to cyasdevice module. This is meant to be used in order to avoid error scenarios where the device module could be called by both the block and gadget modules at the same time. Signed-off-by: David Cross Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/westbridge/astoria/device/cyasdevice.c b/drivers/staging/westbridge/astoria/device/cyasdevice.c index 9b5bc53..c76e383 100644 --- a/drivers/staging/westbridge/astoria/device/cyasdevice.c +++ b/drivers/staging/westbridge/astoria/device/cyasdevice.c @@ -48,6 +48,8 @@ typedef struct cyasdevice { cy_as_device_handle dev_handle; /* Handle to the HAL */ cy_as_hal_device_tag hal_tag; + spinlock_t common_lock; + unsigned long flags; } cyasdevice; /* global ptr to astoria device */ @@ -126,6 +128,20 @@ static void cy_misc_callback(cy_as_device_handle h, } } +void cy_as_acquire_common_lock() +{ + spin_lock_irqsave(&cy_as_device_controller->common_lock, + cy_as_device_controller->flags); +} +EXPORT_SYMBOL(cy_as_acquire_common_lock); + +void cy_as_release_common_lock() +{ + spin_unlock_irqrestore(&cy_as_device_controller->common_lock, + cy_as_device_controller->flags); +} +EXPORT_SYMBOL(cy_as_release_common_lock); + /* reset astoria and reinit all regs */ #define PNAND_REG_CFG_INIT_VAL 0x0000 void hal_reset(cy_as_hal_device_tag tag) @@ -331,6 +347,8 @@ static int cyasdevice_initialize(void) ((ver_data.is_debug_mode) ? "debug" : "release"), ver_data.major, ver_data.minor, ver_data.build, str); + spin_lock_init(&cy_as_dev->common_lock); + /* done now */ cy_as_device_controller = cy_as_dev;