/* * linux/drivers/media/video/samsung/mfc5x/mfc_pm.h * * Copyright (c) 2010 Samsung Electronics Co., Ltd. * http://www.samsung.com/ * * Power management module for Samsung MFC (Multi Function Codec - FIMV) driver * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef __MFC_PM_H #define __MFC_PM_H __FILE__ int mfc_init_pm(struct mfc_dev *mfcdev); void mfc_final_pm(struct mfc_dev *mfcdev); int mfc_clock_on(struct mfc_dev *mfcdev); void mfc_clock_off(struct mfc_dev *mfcdev); int mfc_power_on(void); int mfc_power_off(void); #ifdef CONFIG_CPU_EXYNOS4210 bool mfc_power_chk(void); #endif void mfc_pd_enable(void); #endif /* __MFC_PM_H */