hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2010 Google, Inc.
 *
 * Author:
 *    Colin Cross <ccross@google.com>
 *    Based on arch/arm/plat-omap/cpu-omap.c, (C) 2005 Nokia Corporation
 */
 
#include <linux/bits.h>
#include <linux/cpu.h>
#include <linux/err.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/pm_opp.h>
#include <linux/types.h>
 
#include <soc/tegra/common.h>
#include <soc/tegra/fuse.h>
 
static bool cpu0_node_has_opp_v2_prop(void)
{
   struct device_node *np = of_cpu_device_node_get(0);
   bool ret = false;
 
   if (of_get_property(np, "operating-points-v2", NULL))
       ret = true;
 
   of_node_put(np);
   return ret;
}
 
static int tegra20_cpufreq_probe(struct platform_device *pdev)
{
   struct platform_device *cpufreq_dt;
   struct opp_table *opp_table;
   struct device *cpu_dev;
   u32 versions[2];
   int err;
 
   if (!cpu0_node_has_opp_v2_prop()) {
       dev_err(&pdev->dev, "operating points not found\n");
       dev_err(&pdev->dev, "please update your device tree\n");
       return -ENODEV;
   }
 
   if (of_machine_is_compatible("nvidia,tegra20")) {
       versions[0] = BIT(tegra_sku_info.cpu_process_id);
       versions[1] = BIT(tegra_sku_info.soc_speedo_id);
   } else {
       versions[0] = BIT(tegra_sku_info.cpu_process_id);
       versions[1] = BIT(tegra_sku_info.cpu_speedo_id);
   }
 
   dev_info(&pdev->dev, "hardware version 0x%x 0x%x\n",
        versions[0], versions[1]);
 
   cpu_dev = get_cpu_device(0);
   if (WARN_ON(!cpu_dev))
       return -ENODEV;
 
   opp_table = dev_pm_opp_set_supported_hw(cpu_dev, versions, 2);
   err = PTR_ERR_OR_ZERO(opp_table);
   if (err) {
       dev_err(&pdev->dev, "failed to set supported hw: %d\n", err);
       return err;
   }
 
   cpufreq_dt = platform_device_register_simple("cpufreq-dt", -1, NULL, 0);
   err = PTR_ERR_OR_ZERO(cpufreq_dt);
   if (err) {
       dev_err(&pdev->dev,
           "failed to create cpufreq-dt device: %d\n", err);
       goto err_put_supported_hw;
   }
 
   platform_set_drvdata(pdev, cpufreq_dt);
 
   return 0;
 
err_put_supported_hw:
   dev_pm_opp_put_supported_hw(opp_table);
 
   return err;
}
 
static int tegra20_cpufreq_remove(struct platform_device *pdev)
{
   struct platform_device *cpufreq_dt;
   struct opp_table *opp_table;
 
   cpufreq_dt = platform_get_drvdata(pdev);
   platform_device_unregister(cpufreq_dt);
 
   opp_table = dev_pm_opp_get_opp_table(get_cpu_device(0));
   dev_pm_opp_put_supported_hw(opp_table);
   dev_pm_opp_put_opp_table(opp_table);
 
   return 0;
}
 
static struct platform_driver tegra20_cpufreq_driver = {
   .probe        = tegra20_cpufreq_probe,
   .remove        = tegra20_cpufreq_remove,
   .driver        = {
       .name    = "tegra20-cpufreq",
   },
};
module_platform_driver(tegra20_cpufreq_driver);
 
MODULE_ALIAS("platform:tegra20-cpufreq");
MODULE_AUTHOR("Colin Cross <ccross@android.com>");
MODULE_DESCRIPTION("NVIDIA Tegra20 cpufreq driver");
MODULE_LICENSE("GPL");