예제 #1
0
/**
 * isph3a_save_context - Saves the values of the h3a module registers.
 **/
void isph3a_save_context(struct device *dev)
{
	DPRINTK_ISPH3A(" Saving context\n");
	isp_save_context(dev, isph3a_reg_list);
	/* Avoid enable during restore ctx */
	isph3a_reg_list[0].val &= ~(ISPH3A_PCR_AEW_EN | ISPH3A_PCR_AF_EN);
}
예제 #2
0
/**
 * ispresizer_save_context - Saves the values of the resizer module registers.
 **/
void ispresizer_save_context(void)
{
	DPRINTK_ISPRESZ("Saving context\n");
	isp_save_context(isprsz_reg_list);
}
예제 #3
0
/**
 * ispccdc_save_context - Saves the values of the CCDC module registers
 **/
void ispccdc_save_context(void)
{
	DPRINTK_ISPCCDC("Saving context\n");
	isp_save_context(ispccdc_reg_list);
}
예제 #4
0
/*
 * ispresizer_save_context - Saves the values of the resizer module registers.
 */
void ispresizer_save_context(struct isp_device *isp)
{
	dev_dbg(isp->dev, "Saving context\n");
	isp_save_context(isp, isprsz_reg_list);
}
예제 #5
0
/**
 * ispresizer_save_context - Saves the values of the resizer module registers.
 **/
void ispresizer_save_context(struct device *dev)
{
	isp_save_context(dev, isprsz_reg_list);
}