mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
59 lines
1.4 KiB
C
59 lines
1.4 KiB
C
|
/*
|
||
|
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
|
||
|
* http://www.samsung.com
|
||
|
* Akshay Saraswat <akshay.s@samsung.com>
|
||
|
*
|
||
|
* EXYNOS - Thermal Management Unit
|
||
|
*
|
||
|
* See file CREDITS for list of people who contributed to this
|
||
|
* project.
|
||
|
*
|
||
|
* 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.
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||
|
* MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef __ASM_ARCH_TMU_H
|
||
|
#define __ASM_ARCH_TMU_H
|
||
|
|
||
|
struct exynos5_tmu_reg {
|
||
|
unsigned triminfo;
|
||
|
unsigned rsvd1;
|
||
|
unsigned rsvd2;
|
||
|
unsigned rsvd3;
|
||
|
unsigned rsvd4;
|
||
|
unsigned triminfo_control;
|
||
|
unsigned rsvd5;
|
||
|
unsigned rsvd6;
|
||
|
unsigned tmu_control;
|
||
|
unsigned rsvd7;
|
||
|
unsigned tmu_status;
|
||
|
unsigned sampling_internal;
|
||
|
unsigned counter_value0;
|
||
|
unsigned counter_value1;
|
||
|
unsigned rsvd8;
|
||
|
unsigned rsvd9;
|
||
|
unsigned current_temp;
|
||
|
unsigned rsvd10;
|
||
|
unsigned rsvd11;
|
||
|
unsigned rsvd12;
|
||
|
unsigned threshold_temp_rise;
|
||
|
unsigned threshold_temp_fall;
|
||
|
unsigned rsvd13;
|
||
|
unsigned rsvd14;
|
||
|
unsigned past_temp3_0;
|
||
|
unsigned past_temp7_4;
|
||
|
unsigned past_temp11_8;
|
||
|
unsigned past_temp15_12;
|
||
|
unsigned inten;
|
||
|
unsigned intstat;
|
||
|
unsigned intclear;
|
||
|
unsigned rsvd15;
|
||
|
unsigned emul_con;
|
||
|
};
|
||
|
#endif /* __ASM_ARCH_TMU_H */
|