1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2017 IBM Corporation
7 #include <linux/mfd/syscon.h>
8 #include <linux/miscdevice.h>
10 #include <linux/module.h>
11 #include <linux/of_address.h>
12 #include <linux/platform_device.h>
13 #include <linux/poll.h>
14 #include <linux/regmap.h>
16 #include <linux/aspeed-lpc-ctrl.h>
18 #define DEVICE_NAME "aspeed-lpc-ctrl"
21 #define HICR5_ENL2H BIT(8)
22 #define HICR5_ENFWH BIT(10)
27 struct aspeed_lpc_ctrl
{
28 struct miscdevice miscdev
;
29 struct regmap
*regmap
;
32 resource_size_t mem_size
;
37 static struct aspeed_lpc_ctrl
*file_aspeed_lpc_ctrl(struct file
*file
)
39 return container_of(file
->private_data
, struct aspeed_lpc_ctrl
,
43 static int aspeed_lpc_ctrl_mmap(struct file
*file
, struct vm_area_struct
*vma
)
45 struct aspeed_lpc_ctrl
*lpc_ctrl
= file_aspeed_lpc_ctrl(file
);
46 unsigned long vsize
= vma
->vm_end
- vma
->vm_start
;
47 pgprot_t prot
= vma
->vm_page_prot
;
49 if (vma
->vm_pgoff
+ vsize
> lpc_ctrl
->mem_base
+ lpc_ctrl
->mem_size
)
52 /* ast2400/2500 AHB accesses are not cache coherent */
53 prot
= pgprot_noncached(prot
);
55 if (remap_pfn_range(vma
, vma
->vm_start
,
56 (lpc_ctrl
->mem_base
>> PAGE_SHIFT
) + vma
->vm_pgoff
,
63 static long aspeed_lpc_ctrl_ioctl(struct file
*file
, unsigned int cmd
,
66 struct aspeed_lpc_ctrl
*lpc_ctrl
= file_aspeed_lpc_ctrl(file
);
67 struct device
*dev
= file
->private_data
;
68 void __user
*p
= (void __user
*)param
;
69 struct aspeed_lpc_ctrl_mapping map
;
74 if (copy_from_user(&map
, p
, sizeof(map
)))
81 case ASPEED_LPC_CTRL_IOCTL_GET_SIZE
:
82 /* The flash windows don't report their size */
83 if (map
.window_type
!= ASPEED_LPC_CTRL_WINDOW_MEMORY
)
86 /* Support more than one window id in the future */
87 if (map
.window_id
!= 0)
90 /* If memory-region is not described in device tree */
91 if (!lpc_ctrl
->mem_size
) {
92 dev_dbg(dev
, "Didn't find reserved memory\n");
96 map
.size
= lpc_ctrl
->mem_size
;
98 return copy_to_user(p
, &map
, sizeof(map
)) ? -EFAULT
: 0;
99 case ASPEED_LPC_CTRL_IOCTL_MAP
:
102 * The top half of HICR7 is the MSB of the BMC address of the
104 * The bottom half of HICR7 is the MSB of the HOST LPC
105 * firmware space address of the mapping.
107 * The 1 bits in the top of half of HICR8 represent the bits
108 * (in the requested address) that should be ignored and
109 * replaced with those from the top half of HICR7.
110 * The 1 bits in the bottom half of HICR8 represent the bits
111 * (in the requested address) that should be kept and pass
112 * into the BMC address space.
116 * It doesn't make sense to talk about a size or offset with
117 * low 16 bits set. Both HICR7 and HICR8 talk about the top 16
118 * bits of addresses and sizes.
121 if ((map
.size
& 0x0000ffff) || (map
.offset
& 0x0000ffff))
125 * Because of the way the masks work in HICR8 offset has to
126 * be a multiple of size.
128 if (map
.offset
& (map
.size
- 1))
131 if (map
.window_type
== ASPEED_LPC_CTRL_WINDOW_FLASH
) {
132 if (!lpc_ctrl
->pnor_size
) {
133 dev_dbg(dev
, "Didn't find host pnor flash\n");
136 addr
= lpc_ctrl
->pnor_base
;
137 size
= lpc_ctrl
->pnor_size
;
138 } else if (map
.window_type
== ASPEED_LPC_CTRL_WINDOW_MEMORY
) {
139 /* If memory-region is not described in device tree */
140 if (!lpc_ctrl
->mem_size
) {
141 dev_dbg(dev
, "Didn't find reserved memory\n");
144 addr
= lpc_ctrl
->mem_base
;
145 size
= lpc_ctrl
->mem_size
;
150 /* Check overflow first! */
151 if (map
.offset
+ map
.size
< map
.offset
||
152 map
.offset
+ map
.size
> size
)
155 if (map
.size
== 0 || map
.size
> size
)
161 * addr (host lpc address) is safe regardless of values. This
162 * simply changes the address the host has to request on its
163 * side of the LPC bus. This cannot impact the hosts own
164 * memory space by surprise as LPC specific accessors are
165 * required. The only strange thing that could be done is
166 * setting the lower 16 bits but the shift takes care of that.
169 rc
= regmap_write(lpc_ctrl
->regmap
, HICR7
,
170 (addr
| (map
.addr
>> 16)));
174 rc
= regmap_write(lpc_ctrl
->regmap
, HICR8
,
175 (~(map
.size
- 1)) | ((map
.size
>> 16) - 1));
180 * Enable LPC FHW cycles. This is required for the host to
181 * access the regions specified.
183 return regmap_update_bits(lpc_ctrl
->regmap
, HICR5
,
184 HICR5_ENFWH
| HICR5_ENL2H
,
185 HICR5_ENFWH
| HICR5_ENL2H
);
191 static const struct file_operations aspeed_lpc_ctrl_fops
= {
192 .owner
= THIS_MODULE
,
193 .mmap
= aspeed_lpc_ctrl_mmap
,
194 .unlocked_ioctl
= aspeed_lpc_ctrl_ioctl
,
197 static int aspeed_lpc_ctrl_probe(struct platform_device
*pdev
)
199 struct aspeed_lpc_ctrl
*lpc_ctrl
;
200 struct device_node
*node
;
201 struct resource resm
;
207 lpc_ctrl
= devm_kzalloc(dev
, sizeof(*lpc_ctrl
), GFP_KERNEL
);
211 /* If flash is described in device tree then store */
212 node
= of_parse_phandle(dev
->of_node
, "flash", 0);
214 dev_dbg(dev
, "Didn't find host pnor flash node\n");
216 rc
= of_address_to_resource(node
, 1, &resm
);
219 dev_err(dev
, "Couldn't address to resource for flash\n");
223 lpc_ctrl
->pnor_size
= resource_size(&resm
);
224 lpc_ctrl
->pnor_base
= resm
.start
;
228 dev_set_drvdata(&pdev
->dev
, lpc_ctrl
);
230 /* If memory-region is described in device tree then store */
231 node
= of_parse_phandle(dev
->of_node
, "memory-region", 0);
233 dev_dbg(dev
, "Didn't find reserved memory\n");
235 rc
= of_address_to_resource(node
, 0, &resm
);
238 dev_err(dev
, "Couldn't address to resource for reserved memory\n");
242 lpc_ctrl
->mem_size
= resource_size(&resm
);
243 lpc_ctrl
->mem_base
= resm
.start
;
246 lpc_ctrl
->regmap
= syscon_node_to_regmap(
247 pdev
->dev
.parent
->of_node
);
248 if (IS_ERR(lpc_ctrl
->regmap
)) {
249 dev_err(dev
, "Couldn't get regmap\n");
253 lpc_ctrl
->clk
= devm_clk_get(dev
, NULL
);
254 if (IS_ERR(lpc_ctrl
->clk
)) {
255 dev_err(dev
, "couldn't get clock\n");
256 return PTR_ERR(lpc_ctrl
->clk
);
258 rc
= clk_prepare_enable(lpc_ctrl
->clk
);
260 dev_err(dev
, "couldn't enable clock\n");
264 lpc_ctrl
->miscdev
.minor
= MISC_DYNAMIC_MINOR
;
265 lpc_ctrl
->miscdev
.name
= DEVICE_NAME
;
266 lpc_ctrl
->miscdev
.fops
= &aspeed_lpc_ctrl_fops
;
267 lpc_ctrl
->miscdev
.parent
= dev
;
268 rc
= misc_register(&lpc_ctrl
->miscdev
);
270 dev_err(dev
, "Unable to register device\n");
277 clk_disable_unprepare(lpc_ctrl
->clk
);
281 static int aspeed_lpc_ctrl_remove(struct platform_device
*pdev
)
283 struct aspeed_lpc_ctrl
*lpc_ctrl
= dev_get_drvdata(&pdev
->dev
);
285 misc_deregister(&lpc_ctrl
->miscdev
);
286 clk_disable_unprepare(lpc_ctrl
->clk
);
291 static const struct of_device_id aspeed_lpc_ctrl_match
[] = {
292 { .compatible
= "aspeed,ast2400-lpc-ctrl" },
293 { .compatible
= "aspeed,ast2500-lpc-ctrl" },
297 static struct platform_driver aspeed_lpc_ctrl_driver
= {
300 .of_match_table
= aspeed_lpc_ctrl_match
,
302 .probe
= aspeed_lpc_ctrl_probe
,
303 .remove
= aspeed_lpc_ctrl_remove
,
306 module_platform_driver(aspeed_lpc_ctrl_driver
);
308 MODULE_DEVICE_TABLE(of
, aspeed_lpc_ctrl_match
);
309 MODULE_LICENSE("GPL");
310 MODULE_AUTHOR("Cyril Bur <cyrilbur@gmail.com>");
311 MODULE_DESCRIPTION("Control for aspeed 2400/2500 LPC HOST to BMC mappings");