2010-12-03 16:14:57 +08:00
|
|
|
/* linux/arch/arm/plat-samsung/include/plat/pd.h
|
|
|
|
*
|
2011-02-14 15:22:36 +08:00
|
|
|
* Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
|
2010-12-03 16:14:57 +08:00
|
|
|
* http://www.samsung.com
|
|
|
|
*
|
|
|
|
* 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 __ASM_PLAT_SAMSUNG_PD_H
|
|
|
|
#define __ASM_PLAT_SAMSUNG_PD_H __FILE__
|
|
|
|
|
|
|
|
struct samsung_pd_info {
|
|
|
|
int (*enable)(struct device *dev);
|
|
|
|
int (*disable)(struct device *dev);
|
|
|
|
void __iomem *base;
|
|
|
|
};
|
|
|
|
|
2011-02-14 15:22:36 +08:00
|
|
|
enum exynos4_pd_block {
|
2010-12-03 16:14:57 +08:00
|
|
|
PD_MFC,
|
|
|
|
PD_G3D,
|
|
|
|
PD_LCD0,
|
|
|
|
PD_LCD1,
|
|
|
|
PD_TV,
|
|
|
|
PD_CAM,
|
|
|
|
PD_GPS
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ASM_PLAT_SAMSUNG_PD_H */
|