aboutsummaryrefslogtreecommitdiff
path: root/src/soc/rockchip/rk3288/tsadc.c
diff options
context:
space:
mode:
authorhuang lin <hl@rock-chips.com>2014-10-14 10:04:16 -0700
committerPatrick Georgi <pgeorgi@google.com>2015-04-08 09:28:46 +0200
commita97bd5a4c80faac0ea47eced594c8184a3f3fdcc (patch)
treec1a0d69e749cf601ff462bb47b890445fc4129a9 /src/soc/rockchip/rk3288/tsadc.c
parent2d3d452d521db352b9f9a978314a997d3dee5bd6 (diff)
rk3288: support tsadc
check the cpu and gpu temperature in romstage, if over 120 degrees celsius,shut down the device. BUG=None Test=Boot on veyron_pinky rev2, write value 3421(125 celsius) to grf_tsadc_testbitl register, the device will be shut down Change-Id: I275d643ce8560444a9b42ee566d5fd63ebcda35e Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: e0c597489dc0637ffa66ee9db0c4f60757f8889f Original-Change-Id: If406d6a4f6201150f52ea7fc64cd50b45778d7aa Original-Signed-off-by: huang lin <hl@rock-chips.com> Original-Reviewed-on: https://chromium-review.googlesource.com/223259 Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Original-Commit-Queue: Julius Werner <jwerner@chromium.org> Reviewed-on: http://review.coreboot.org/9348 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/soc/rockchip/rk3288/tsadc.c')
-rw-r--r--src/soc/rockchip/rk3288/tsadc.c119
1 files changed, 119 insertions, 0 deletions
diff --git a/src/soc/rockchip/rk3288/tsadc.c b/src/soc/rockchip/rk3288/tsadc.c
new file mode 100644
index 0000000000..73980a0d48
--- /dev/null
+++ b/src/soc/rockchip/rk3288/tsadc.c
@@ -0,0 +1,119 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2014 Rockchip Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include <assert.h>
+#include <console/console.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <arch/io.h>
+#include <delay.h>
+#include "tsadc.h"
+#include "clock.h"
+#include "pmu.h"
+#include "grf.h"
+
+struct rk3288_tsadc_regs {
+ u32 user_con;
+ u32 auto_con;
+ u32 int_en;
+ u32 int_pd;
+ u32 reserved0[(0x20 - 0x10) / 4];
+ u32 data0;
+ u32 data1;
+ u32 data2;
+ u32 data3;
+ u32 comp0_int;
+ u32 comp1_int;
+ u32 comp2_int;
+ u32 comp3_int;
+ u32 comp0_shut;
+ u32 comp1_shut;
+ u32 comp2_shut;
+ u32 comp3_shut;
+ u32 reserved1[(0x60 - 0x50) / 4];
+ u32 hight_int_debounce;
+ u32 hight_tshut_debounce;
+ u32 auto_period;
+ u32 auto_period_ht;
+};
+check_member(rk3288_tsadc_regs, auto_period_ht, 0x6c);
+
+/* auto_con */
+#define LAST_TSHUT (1 << 24)
+#define TSHUT_POL_HIGH (1 << 8)
+#define SRC3_EN (1 << 7)
+#define SRC2_EN (1 << 6)
+#define SRC1_EN (1 << 5)
+#define SRC0_EN (1 << 4)
+#define AUTO_EN (1 << 0)
+
+/* int_en */
+#define TSHUT_CRU_EN_SRC3 (1 << 11)
+#define TSHUT_CRU_EN_SRC2 (1 << 10)
+#define TSHUT_CRU_EN_SRC1 (1 << 9)
+#define TSHUT_CRU_EN_SRC0 (1 << 8)
+#define TSHUT_GPIO_EN_SRC3 (1 << 7)
+#define TSHUT_GPIO_EN_SRC2 (1 << 6)
+#define TSHUT_GPIO_EN_SRC1 (1 << 5)
+#define TSHUT_GPIO_EN_SRC0 (1 << 4)
+
+#define AUTO_PERIOD 10
+#define AUTO_DEBOUNCE 4
+#define AUTO_PERIOD_HT 10
+#define AUTO_DEBOUNCE_HT 4
+#define TSADC_CLOCK_HZ (8 * KHz)
+
+/* AD value, correspond to 120 degrees Celsius */
+#define TSADC_SHUT_VALUE 3437
+
+struct rk3288_tsadc_regs *rk3288_tsadc = (void *)TSADC_BASE;
+
+void tsadc_init(void)
+{
+ rkclk_configure_tsadc(TSADC_CLOCK_HZ);
+
+ if (readl(&rk3288_tsadc->auto_con) & LAST_TSHUT) {
+ printk(BIOS_WARNING, "last shutdown/rebot was caused "
+ "by over-temperature hardware trigger!\n");
+ setbits_le32(&rk3288_tsadc->auto_con, LAST_TSHUT);
+ }
+
+ setbits_le32(&rk3288_tsadc->int_en,
+ TSHUT_CRU_EN_SRC2 | TSHUT_CRU_EN_SRC1 |
+ TSHUT_GPIO_EN_SRC2 | TSHUT_GPIO_EN_SRC1);
+
+ writel(AUTO_PERIOD, &rk3288_tsadc->auto_period);
+ writel(AUTO_DEBOUNCE, &rk3288_tsadc->hight_int_debounce);
+ writel(AUTO_PERIOD_HT, &rk3288_tsadc->auto_period_ht);
+ writel(AUTO_DEBOUNCE_HT, &rk3288_tsadc->hight_tshut_debounce);
+
+ writel(TSADC_SHUT_VALUE, &rk3288_tsadc->comp1_shut);
+ writel(TSADC_SHUT_VALUE, &rk3288_tsadc->comp2_shut);
+
+ /* polarity set to high,channel1 for cpu,channel2 for gpu */
+ setbits_le32(&rk3288_tsadc->auto_con, TSHUT_POL_HIGH | SRC2_EN |
+ SRC1_EN | AUTO_EN);
+
+ /*
+ tsadc iomux must be set after the tshut polarity setting,
+ since the tshut polarity defalut low active,
+ so if you enable tsadc iomux,it will output high
+ */
+ setbits_le32(&rk3288_pmu->iomux_tsadc_int, IOMUX_TSADC_INT);
+}