mirror of https://gitee.com/openkylin/linux.git
[media] omap4iss: Relax usleep ranges
Allow the system to merge CPU wakeups by specifying different minimum and maximum usleep values. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
05b1b986b5
commit
fa7014f569
|
@ -741,7 +741,7 @@ static int iss_reset(struct iss_device *iss)
|
|||
|
||||
timeout = iss_poll_condition_timeout(
|
||||
!(iss_reg_read(iss, OMAP4_ISS_MEM_TOP, ISS_HL_SYSCONFIG) &
|
||||
ISS_HL_SYSCONFIG_SOFTRESET), 1000, 10, 10);
|
||||
ISS_HL_SYSCONFIG_SOFTRESET), 1000, 10, 100);
|
||||
if (timeout) {
|
||||
dev_err(iss->dev, "ISS reset timeout\n");
|
||||
return -ETIMEDOUT;
|
||||
|
|
|
@ -500,7 +500,7 @@ int omap4iss_csi2_reset(struct iss_csi2_device *csi2)
|
|||
|
||||
timeout = iss_poll_condition_timeout(
|
||||
iss_reg_read(csi2->iss, csi2->regs1, CSI2_SYSSTATUS) &
|
||||
CSI2_SYSSTATUS_RESET_DONE, 500, 100, 100);
|
||||
CSI2_SYSSTATUS_RESET_DONE, 500, 100, 200);
|
||||
if (timeout) {
|
||||
dev_err(csi2->iss->dev, "CSI2: Soft reset timeout!\n");
|
||||
return -EBUSY;
|
||||
|
@ -511,7 +511,7 @@ int omap4iss_csi2_reset(struct iss_csi2_device *csi2)
|
|||
|
||||
timeout = iss_poll_condition_timeout(
|
||||
iss_reg_read(csi2->iss, csi2->phy->phy_regs, REGISTER1) &
|
||||
REGISTER1_RESET_DONE_CTRLCLK, 10000, 100, 100);
|
||||
REGISTER1_RESET_DONE_CTRLCLK, 10000, 100, 500);
|
||||
if (timeout) {
|
||||
dev_err(csi2->iss->dev, "CSI2: CSI2_96M_FCLK reset timeout!\n");
|
||||
return -EBUSY;
|
||||
|
|
Loading…
Reference in New Issue