295 lines
6.8 KiB
C
Executable file
295 lines
6.8 KiB
C
Executable file
/*
|
|
* Copyright (c) 2015 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com/
|
|
*
|
|
* Exynos - Support Memory controller specific information
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_irq.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/io.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/debugfs.h>
|
|
#include <soc/samsung/exynos_amb_control.h>
|
|
|
|
struct mcinfo_data {
|
|
struct device *dev;
|
|
void __iomem **base;
|
|
|
|
u32 basecnt;
|
|
u32 irqcnt;
|
|
u32 bit_array[2];
|
|
u32 reset_cond;
|
|
|
|
bool ambient_status;
|
|
};
|
|
|
|
#if IS_ENABLED(CONFIG_MCINFO_SYSFS)
|
|
static ssize_t show_exynos_ref_rate(struct device *dev,
|
|
struct device_attribute *attr, char *buf)
|
|
{
|
|
struct mcinfo_data *data = dev_get_drvdata(dev);
|
|
ssize_t count = 0;
|
|
unsigned int tmp;
|
|
int i = 0;
|
|
|
|
count = snprintf(buf, PAGE_SIZE, "HW Refreshing rate\n");
|
|
|
|
for (i = 0; i < data->basecnt; i++) {
|
|
tmp = __raw_readl(data->base[i])
|
|
<< (31 - data->bit_array[0] - data->bit_array[1])
|
|
>> (31 - data->bit_array[1]);
|
|
count += snprintf(buf + count, PAGE_SIZE,
|
|
"HwTempRange#%d: 0x%x\n", i, tmp);
|
|
}
|
|
|
|
return count;
|
|
}
|
|
static DEVICE_ATTR(ref_rate, 0640, show_exynos_ref_rate, NULL);
|
|
|
|
static struct attribute *exynos_mcinfo_sysfs_entries[] = {
|
|
&dev_attr_ref_rate.attr,
|
|
NULL,
|
|
};
|
|
|
|
static struct attribute_group exynos_mcinfo_attr_group = {
|
|
.name = "ref_rate",
|
|
.attrs = exynos_mcinfo_sysfs_entries,
|
|
};
|
|
#endif /* MCINFO_SYSFS */
|
|
|
|
static int mcinfo_errcnt;
|
|
|
|
static irqreturn_t exynos_mc_irq_handler(int irq, void *p)
|
|
{
|
|
struct mcinfo_data *data = p;
|
|
unsigned int tmp;
|
|
int i;
|
|
bool hot_flag = false;
|
|
|
|
if (!data->base)
|
|
return IRQ_HANDLED;
|
|
|
|
mcinfo_errcnt++;
|
|
|
|
for (i = 0; i < data->basecnt; i++) {
|
|
tmp = __raw_readl(data->base[i])
|
|
<< (31 - data->bit_array[0] - data->bit_array[1])
|
|
>> (31 - data->bit_array[1]);
|
|
pr_auto(ASL5, "[SW Trip] HwTempRange#%d: 0x%x\n", i, tmp);
|
|
if (tmp >= data->reset_cond)
|
|
hot_flag = true;
|
|
}
|
|
|
|
if (hot_flag) {
|
|
if (data->ambient_status)
|
|
pr_auto(ASL5, "[SW Trip] Memory temperature is too high (irqnum: %d)\n", irq);
|
|
else
|
|
panic("[SW Trip] Memory temperature is too high (irqnum: %d)\n", irq);
|
|
|
|
disable_irq_nosync(irq);
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
}
|
|
|
|
struct mcinfo_data *ext_data;
|
|
unsigned int get_mcinfo_base_count(void)
|
|
{
|
|
if (ext_data == NULL)
|
|
return 0;
|
|
|
|
return ext_data->basecnt;
|
|
}
|
|
EXPORT_SYMBOL_GPL(get_mcinfo_base_count);
|
|
|
|
void get_refresh_rate(unsigned int *result)
|
|
{
|
|
int i;
|
|
|
|
if (ext_data == NULL)
|
|
return;
|
|
|
|
for (i = 0; i < ext_data->basecnt; i++) {
|
|
result[i] = __raw_readl(ext_data->base[i])
|
|
<< (31 - ext_data->bit_array[0] - ext_data->bit_array[1])
|
|
>> (31 - ext_data->bit_array[1]);
|
|
}
|
|
|
|
return;
|
|
}
|
|
EXPORT_SYMBOL_GPL(get_refresh_rate);
|
|
|
|
void exynos_mcinfo_set_ambient_status(bool status)
|
|
{
|
|
if (ext_data)
|
|
ext_data->ambient_status = status;
|
|
}
|
|
EXPORT_SYMBOL_GPL(exynos_mcinfo_set_ambient_status);
|
|
|
|
#if IS_ENABLED(CONFIG_OF)
|
|
static int exynos_mcinfo_parse_dt(struct device_node *np, struct mcinfo_data *data)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!np)
|
|
return -ENODEV;
|
|
|
|
ret = of_property_read_u32(np, "basecnt", &data->basecnt);
|
|
if (ret) {
|
|
dev_err(data->dev, "Failed to get basecnt value!\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = of_property_read_u32(np, "irqcnt", &data->irqcnt);
|
|
if (ret) {
|
|
dev_err(data->dev, "Failed to get irqcnt value!\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = of_property_read_u32_array(np, "bit_field", (u32 *)&data->bit_array,
|
|
(size_t)(ARRAY_SIZE(data->bit_array)));
|
|
if (ret) {
|
|
dev_err(data->dev, "Failed to get bit field information!\n");
|
|
return ret;
|
|
}
|
|
|
|
ret = of_property_read_u32(np, "reset_cond", &data->reset_cond);
|
|
if (ret) {
|
|
dev_err(data->dev, "Failed to get reset_cond value!\n");
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
#else
|
|
static int exynos_mcinfo_parse_dt(struct device_node *np, struct mcinfo_data *data)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
#endif /* OF */
|
|
|
|
static int exynos_mcinfo_probe(struct platform_device *pdev)
|
|
{
|
|
struct mcinfo_data *data;
|
|
struct resource *res;
|
|
int i, ret = 0;
|
|
unsigned int irqnum = 0;
|
|
|
|
data = devm_kzalloc(&pdev->dev, sizeof(struct mcinfo_data), GFP_KERNEL);
|
|
if (!data) {
|
|
pr_err("%s: Not enough memory\n", __func__);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
data->dev = &pdev->dev;
|
|
dev_set_drvdata(data->dev, data);
|
|
ext_data = data;
|
|
ext_data->ambient_status = true;
|
|
|
|
ret = exynos_mcinfo_parse_dt(data->dev->of_node, data);
|
|
if (ret) {
|
|
dev_err(data->dev, "Failed to parse device tree\n");
|
|
return ret;
|
|
}
|
|
|
|
/* Allocate memory for Memory controller base address */
|
|
if (data->basecnt) {
|
|
data->base = kzalloc((sizeof(void __iomem *)) * data->basecnt,
|
|
GFP_KERNEL);
|
|
if (data->base == NULL) {
|
|
dev_err(data->dev, "Failed to allocate memory\n");
|
|
return -ENOMEM;
|
|
}
|
|
for (i = 0; i < data->basecnt; i++) {
|
|
res = platform_get_resource(pdev, IORESOURCE_MEM, i);
|
|
data->base[i] = ioremap(res->start, resource_size(res));
|
|
if (IS_ERR(data->base[i])) {
|
|
ret = PTR_ERR(data->base[i]);
|
|
kfree(data->base);
|
|
return ret;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Register IRQ for SW trip */
|
|
for (i = 0; i < data->irqcnt; i++) {
|
|
irqnum = irq_of_parse_and_map(data->dev->of_node, i);
|
|
if (!irqnum) {
|
|
dev_err(data->dev, "Failed to get IRQ map\n");
|
|
return -EINVAL;
|
|
}
|
|
ret = devm_request_irq(data->dev, irqnum,
|
|
exynos_mc_irq_handler,
|
|
IRQF_SHARED, dev_name(data->dev), data);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_MCINFO_SYSFS)
|
|
ret = sysfs_create_group(&data->dev->kobj,
|
|
&exynos_mcinfo_attr_group);
|
|
if (ret)
|
|
dev_warn(data->dev, "Failed to create sysfs for MR4\n");
|
|
#endif /* MCINFO_SYSFS */
|
|
|
|
dev_info(data->dev, "probe finished!\n");
|
|
return 0;
|
|
}
|
|
|
|
static int exynos_mcinfo_remove(struct platform_device *pdev)
|
|
{
|
|
struct mcinfo_data *data = platform_get_drvdata(pdev);
|
|
int i;
|
|
|
|
#if IS_ENABLED(CONFIG_MCINFO_SYSFS)
|
|
sysfs_remove_group(&data->dev->kobj,
|
|
&exynos_mcinfo_attr_group);
|
|
#endif /* MCINFO_SYSFS */
|
|
|
|
platform_set_drvdata(pdev, NULL);
|
|
|
|
for (i = 0; i < data->basecnt; i++) {
|
|
devm_iounmap(&pdev->dev, data->base[i]);
|
|
}
|
|
|
|
kfree(data->base);
|
|
kfree(data);
|
|
ext_data = NULL;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id exynos_mcinfo_match[] = {
|
|
{ .compatible = "samsung,exynos-mcinfo", },
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(of, exynos_mcinfo_match);
|
|
|
|
static struct platform_driver exynos_mcinfo_driver = {
|
|
.remove = exynos_mcinfo_remove,
|
|
.driver = {
|
|
.name = "exynos-mcinfo",
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = of_match_ptr(exynos_mcinfo_match),
|
|
},
|
|
};
|
|
|
|
static int mcinfo_init(void)
|
|
{
|
|
return platform_driver_probe(&exynos_mcinfo_driver, exynos_mcinfo_probe);
|
|
}
|
|
subsys_initcall(mcinfo_init);
|
|
|
|
MODULE_AUTHOR("Eunok Jo <eunok25.jo@samsung.com");
|
|
MODULE_DESCRIPTION("Samsung EXYNOS Memory controller specific information");
|
|
MODULE_LICENSE("GPL");
|