2 * Copyright (C) 2014 Linaro Ltd.
4 * Author: Linus Walleij <linus.walleij@linaro.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2, as
8 * published by the Free Software Foundation.
11 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <linux/sys_soc.h>
15 #include <linux/platform_device.h>
16 #include <linux/mfd/syscon.h>
17 #include <linux/regmap.h>
20 /* System ID in syscon */
21 #define REALVIEW_SYS_ID_OFFSET 0x00
23 static const struct of_device_id realview_soc_of_match
[] = {
24 { .compatible
= "arm,realview-eb-soc", },
25 { .compatible
= "arm,realview-pb1176-soc", },
26 { .compatible
= "arm,realview-pb11mp-soc", },
27 { .compatible
= "arm,realview-pba8-soc", },
28 { .compatible
= "arm,realview-pbx-soc", },
32 static u32 realview_coreid
;
34 static const char *realview_arch_str(u32 id
)
36 switch ((id
>> 8) & 0xf) {
40 return "Multi-layer AXI";
46 static ssize_t
realview_get_manf(struct device
*dev
,
47 struct device_attribute
*attr
,
50 return sprintf(buf
, "%02x\n", realview_coreid
>> 24);
53 static struct device_attribute realview_manf_attr
=
54 __ATTR(manufacturer
, S_IRUGO
, realview_get_manf
, NULL
);
56 static ssize_t
realview_get_board(struct device
*dev
,
57 struct device_attribute
*attr
,
60 return sprintf(buf
, "HBI-%03x\n", ((realview_coreid
>> 16) & 0xfff));
63 static struct device_attribute realview_board_attr
=
64 __ATTR(board
, S_IRUGO
, realview_get_board
, NULL
);
66 static ssize_t
realview_get_arch(struct device
*dev
,
67 struct device_attribute
*attr
,
70 return sprintf(buf
, "%s\n", realview_arch_str(realview_coreid
));
73 static struct device_attribute realview_arch_attr
=
74 __ATTR(fpga
, S_IRUGO
, realview_get_arch
, NULL
);
76 static ssize_t
realview_get_build(struct device
*dev
,
77 struct device_attribute
*attr
,
80 return sprintf(buf
, "%02x\n", (realview_coreid
& 0xFF));
83 static struct device_attribute realview_build_attr
=
84 __ATTR(build
, S_IRUGO
, realview_get_build
, NULL
);
86 static int realview_soc_probe(struct platform_device
*pdev
)
88 struct regmap
*syscon_regmap
;
89 struct soc_device
*soc_dev
;
90 struct soc_device_attribute
*soc_dev_attr
;
91 struct device_node
*np
= pdev
->dev
.of_node
;
94 syscon_regmap
= syscon_regmap_lookup_by_phandle(np
, "regmap");
95 if (IS_ERR(syscon_regmap
))
96 return PTR_ERR(syscon_regmap
);
98 soc_dev_attr
= kzalloc(sizeof(*soc_dev_attr
), GFP_KERNEL
);
102 ret
= of_property_read_string(np
, "compatible",
103 &soc_dev_attr
->soc_id
);
107 soc_dev_attr
->machine
= "RealView";
108 soc_dev_attr
->family
= "Versatile";
109 soc_dev
= soc_device_register(soc_dev_attr
);
110 if (IS_ERR(soc_dev
)) {
114 ret
= regmap_read(syscon_regmap
, REALVIEW_SYS_ID_OFFSET
,
119 device_create_file(soc_device_to_device(soc_dev
), &realview_manf_attr
);
120 device_create_file(soc_device_to_device(soc_dev
), &realview_board_attr
);
121 device_create_file(soc_device_to_device(soc_dev
), &realview_arch_attr
);
122 device_create_file(soc_device_to_device(soc_dev
), &realview_build_attr
);
124 dev_info(&pdev
->dev
, "RealView Syscon Core ID: 0x%08x, HBI-%03x\n",
126 ((realview_coreid
>> 16) & 0xfff));
127 /* FIXME: add attributes for SoC to sysfs */
131 static struct platform_driver realview_soc_driver
= {
132 .probe
= realview_soc_probe
,
134 .name
= "realview-soc",
135 .of_match_table
= realview_soc_of_match
,
138 builtin_platform_driver(realview_soc_driver
);