Linux Audio

Check our new training course

Loading...
v3.15
  1#include <linux/err.h>
  2#include <linux/module.h>
  3#include <linux/io.h>
  4#include <linux/of.h>
 
  5#include <linux/slab.h>
  6#include <linux/sys_soc.h>
  7
  8#include "hardware.h"
  9#include "common.h"
 10
 11unsigned int __mxc_cpu_type;
 12EXPORT_SYMBOL(__mxc_cpu_type);
 13
 14static unsigned int imx_soc_revision;
 15
 16void mxc_set_cpu_type(unsigned int type)
 17{
 18	__mxc_cpu_type = type;
 19}
 20
 21void imx_set_soc_revision(unsigned int rev)
 22{
 23	imx_soc_revision = rev;
 24}
 25
 26unsigned int imx_get_soc_revision(void)
 27{
 28	return imx_soc_revision;
 29}
 30
 31void imx_print_silicon_rev(const char *cpu, int srev)
 32{
 33	if (srev == IMX_CHIP_REVISION_UNKNOWN)
 34		pr_info("CPU identified as %s, unknown revision\n", cpu);
 35	else
 36		pr_info("CPU identified as %s, silicon rev %d.%d\n",
 37				cpu, (srev >> 4) & 0xf, srev & 0xf);
 38}
 39
 40void __init imx_set_aips(void __iomem *base)
 41{
 42	unsigned int reg;
 43/*
 44 * Set all MPROTx to be non-bufferable, trusted for R/W,
 45 * not forced to user-mode.
 46 */
 47	__raw_writel(0x77777777, base + 0x0);
 48	__raw_writel(0x77777777, base + 0x4);
 49
 50/*
 51 * Set all OPACRx to be non-bufferable, to not require
 52 * supervisor privilege level for access, allow for
 53 * write access and untrusted master access.
 54 */
 55	__raw_writel(0x0, base + 0x40);
 56	__raw_writel(0x0, base + 0x44);
 57	__raw_writel(0x0, base + 0x48);
 58	__raw_writel(0x0, base + 0x4C);
 59	reg = __raw_readl(base + 0x50) & 0x00FFFFFF;
 60	__raw_writel(reg, base + 0x50);
 
 
 
 
 
 
 
 
 
 
 
 
 61}
 62
 63struct device * __init imx_soc_device_init(void)
 64{
 65	struct soc_device_attribute *soc_dev_attr;
 66	struct soc_device *soc_dev;
 67	struct device_node *root;
 68	const char *soc_id;
 69	int ret;
 70
 71	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
 72	if (!soc_dev_attr)
 73		return NULL;
 74
 75	soc_dev_attr->family = "Freescale i.MX";
 76
 77	root = of_find_node_by_path("/");
 78	ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
 79	of_node_put(root);
 80	if (ret)
 81		goto free_soc;
 82
 83	switch (__mxc_cpu_type) {
 84	case MXC_CPU_MX1:
 85		soc_id = "i.MX1";
 86		break;
 87	case MXC_CPU_MX21:
 88		soc_id = "i.MX21";
 89		break;
 90	case MXC_CPU_MX25:
 91		soc_id = "i.MX25";
 92		break;
 93	case MXC_CPU_MX27:
 94		soc_id = "i.MX27";
 95		break;
 96	case MXC_CPU_MX31:
 97		soc_id = "i.MX31";
 98		break;
 99	case MXC_CPU_MX35:
100		soc_id = "i.MX35";
101		break;
102	case MXC_CPU_MX51:
103		soc_id = "i.MX51";
104		break;
105	case MXC_CPU_MX53:
106		soc_id = "i.MX53";
107		break;
108	case MXC_CPU_IMX6SL:
109		soc_id = "i.MX6SL";
110		break;
111	case MXC_CPU_IMX6DL:
112		soc_id = "i.MX6DL";
113		break;
 
 
 
114	case MXC_CPU_IMX6Q:
115		soc_id = "i.MX6Q";
 
 
 
 
 
 
116		break;
117	default:
118		soc_id = "Unknown";
119	}
120	soc_dev_attr->soc_id = soc_id;
121
122	soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
123					   (imx_soc_revision >> 4) & 0xf,
124					   imx_soc_revision & 0xf);
125	if (!soc_dev_attr->revision)
126		goto free_soc;
127
128	soc_dev = soc_device_register(soc_dev_attr);
129	if (IS_ERR(soc_dev))
130		goto free_rev;
131
132	return soc_device_to_device(soc_dev);
133
134free_rev:
135	kfree(soc_dev_attr->revision);
136free_soc:
137	kfree(soc_dev_attr);
138	return NULL;
139}
v4.6
  1#include <linux/err.h>
  2#include <linux/module.h>
  3#include <linux/io.h>
  4#include <linux/of.h>
  5#include <linux/of_address.h>
  6#include <linux/slab.h>
  7#include <linux/sys_soc.h>
  8
  9#include "hardware.h"
 10#include "common.h"
 11
 12unsigned int __mxc_cpu_type;
 13EXPORT_SYMBOL(__mxc_cpu_type);
 14
 15static unsigned int imx_soc_revision;
 16
 17void mxc_set_cpu_type(unsigned int type)
 18{
 19	__mxc_cpu_type = type;
 20}
 21
 22void imx_set_soc_revision(unsigned int rev)
 23{
 24	imx_soc_revision = rev;
 25}
 26
 27unsigned int imx_get_soc_revision(void)
 28{
 29	return imx_soc_revision;
 30}
 31
 32void imx_print_silicon_rev(const char *cpu, int srev)
 33{
 34	if (srev == IMX_CHIP_REVISION_UNKNOWN)
 35		pr_info("CPU identified as %s, unknown revision\n", cpu);
 36	else
 37		pr_info("CPU identified as %s, silicon rev %d.%d\n",
 38				cpu, (srev >> 4) & 0xf, srev & 0xf);
 39}
 40
 41void __init imx_set_aips(void __iomem *base)
 42{
 43	unsigned int reg;
 44/*
 45 * Set all MPROTx to be non-bufferable, trusted for R/W,
 46 * not forced to user-mode.
 47 */
 48	imx_writel(0x77777777, base + 0x0);
 49	imx_writel(0x77777777, base + 0x4);
 50
 51/*
 52 * Set all OPACRx to be non-bufferable, to not require
 53 * supervisor privilege level for access, allow for
 54 * write access and untrusted master access.
 55 */
 56	imx_writel(0x0, base + 0x40);
 57	imx_writel(0x0, base + 0x44);
 58	imx_writel(0x0, base + 0x48);
 59	imx_writel(0x0, base + 0x4C);
 60	reg = imx_readl(base + 0x50) & 0x00FFFFFF;
 61	imx_writel(reg, base + 0x50);
 62}
 63
 64void __init imx_aips_allow_unprivileged_access(
 65		const char *compat)
 66{
 67	void __iomem *aips_base_addr;
 68	struct device_node *np;
 69
 70	for_each_compatible_node(np, NULL, compat) {
 71		aips_base_addr = of_iomap(np, 0);
 72		imx_set_aips(aips_base_addr);
 73	}
 74}
 75
 76struct device * __init imx_soc_device_init(void)
 77{
 78	struct soc_device_attribute *soc_dev_attr;
 79	struct soc_device *soc_dev;
 80	struct device_node *root;
 81	const char *soc_id;
 82	int ret;
 83
 84	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
 85	if (!soc_dev_attr)
 86		return NULL;
 87
 88	soc_dev_attr->family = "Freescale i.MX";
 89
 90	root = of_find_node_by_path("/");
 91	ret = of_property_read_string(root, "model", &soc_dev_attr->machine);
 92	of_node_put(root);
 93	if (ret)
 94		goto free_soc;
 95
 96	switch (__mxc_cpu_type) {
 97	case MXC_CPU_MX1:
 98		soc_id = "i.MX1";
 99		break;
100	case MXC_CPU_MX21:
101		soc_id = "i.MX21";
102		break;
103	case MXC_CPU_MX25:
104		soc_id = "i.MX25";
105		break;
106	case MXC_CPU_MX27:
107		soc_id = "i.MX27";
108		break;
109	case MXC_CPU_MX31:
110		soc_id = "i.MX31";
111		break;
112	case MXC_CPU_MX35:
113		soc_id = "i.MX35";
114		break;
115	case MXC_CPU_MX51:
116		soc_id = "i.MX51";
117		break;
118	case MXC_CPU_MX53:
119		soc_id = "i.MX53";
120		break;
121	case MXC_CPU_IMX6SL:
122		soc_id = "i.MX6SL";
123		break;
124	case MXC_CPU_IMX6DL:
125		soc_id = "i.MX6DL";
126		break;
127	case MXC_CPU_IMX6SX:
128		soc_id = "i.MX6SX";
129		break;
130	case MXC_CPU_IMX6Q:
131		soc_id = "i.MX6Q";
132		break;
133	case MXC_CPU_IMX6UL:
134		soc_id = "i.MX6UL";
135		break;
136	case MXC_CPU_IMX7D:
137		soc_id = "i.MX7D";
138		break;
139	default:
140		soc_id = "Unknown";
141	}
142	soc_dev_attr->soc_id = soc_id;
143
144	soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d.%d",
145					   (imx_soc_revision >> 4) & 0xf,
146					   imx_soc_revision & 0xf);
147	if (!soc_dev_attr->revision)
148		goto free_soc;
149
150	soc_dev = soc_device_register(soc_dev_attr);
151	if (IS_ERR(soc_dev))
152		goto free_rev;
153
154	return soc_device_to_device(soc_dev);
155
156free_rev:
157	kfree(soc_dev_attr->revision);
158free_soc:
159	kfree(soc_dev_attr);
160	return NULL;
161}