1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* IBM POWER Barrier Synchronization Register Driver
4 * Copyright IBM Corporation 2008
6 * Author: Sonny Rao <sonnyrao@us.ibm.com>
9 #include <linux/kernel.h>
11 #include <linux/of_address.h>
12 #include <linux/of_device.h>
13 #include <linux/of_platform.h>
15 #include <linux/module.h>
16 #include <linux/cdev.h>
17 #include <linux/list.h>
19 #include <linux/slab.h>
20 #include <asm/pgtable.h>
24 This driver exposes a special register which can be used for fast
25 synchronization across a large SMP machine. The hardware is exposed
26 as an array of bytes where each process will write to one of the bytes to
27 indicate it has finished the current stage and this update is broadcast to
28 all processors without having to bounce a cacheline between them. In
29 POWER5 and POWER6 there is one of these registers per SMP, but it is
30 presented in two forms; first, it is given as a whole and then as a number
31 of smaller registers which alias to parts of the single whole register.
32 This can potentially allow multiple groups of processes to each have their
33 own private synchronization device.
35 Note that this hardware *must* be written to using *only* single byte writes.
36 It may be read using 1, 2, 4, or 8 byte loads which must be aligned since
37 this region is treated as cache-inhibited processes should also use a
38 full sync before and after writing to the BSR to ensure all stores and
39 the BSR update have made it to all chips in the system
42 /* This is arbitrary number, up to Power6 it's been 17 or fewer */
43 #define BSR_MAX_DEVS (32)
46 u64 bsr_addr
; /* Real address */
47 u64 bsr_len
; /* length of mem region we can map */
48 unsigned bsr_bytes
; /* size of the BSR reg itself */
49 unsigned bsr_stride
; /* interval at which BSR repeats in the page */
50 unsigned bsr_type
; /* maps to enum below */
51 unsigned bsr_num
; /* bsr id number for its type */
54 struct list_head bsr_list
;
58 struct device
*bsr_device
;
63 static unsigned total_bsr_devs
;
64 static struct list_head bsr_devs
= LIST_HEAD_INIT(bsr_devs
);
65 static struct class *bsr_class
;
78 static unsigned bsr_types
[BSR_MAX
];
81 bsr_size_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
83 struct bsr_dev
*bsr_dev
= dev_get_drvdata(dev
);
84 return sprintf(buf
, "%u\n", bsr_dev
->bsr_bytes
);
86 static DEVICE_ATTR_RO(bsr_size
);
89 bsr_stride_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
91 struct bsr_dev
*bsr_dev
= dev_get_drvdata(dev
);
92 return sprintf(buf
, "%u\n", bsr_dev
->bsr_stride
);
94 static DEVICE_ATTR_RO(bsr_stride
);
97 bsr_length_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
99 struct bsr_dev
*bsr_dev
= dev_get_drvdata(dev
);
100 return sprintf(buf
, "%llu\n", bsr_dev
->bsr_len
);
102 static DEVICE_ATTR_RO(bsr_length
);
104 static struct attribute
*bsr_dev_attrs
[] = {
105 &dev_attr_bsr_size
.attr
,
106 &dev_attr_bsr_stride
.attr
,
107 &dev_attr_bsr_length
.attr
,
110 ATTRIBUTE_GROUPS(bsr_dev
);
112 static int bsr_mmap(struct file
*filp
, struct vm_area_struct
*vma
)
114 unsigned long size
= vma
->vm_end
- vma
->vm_start
;
115 struct bsr_dev
*dev
= filp
->private_data
;
118 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
120 /* check for the case of a small BSR device and map one 4k page for it*/
121 if (dev
->bsr_len
< PAGE_SIZE
&& size
== PAGE_SIZE
)
122 ret
= remap_4k_pfn(vma
, vma
->vm_start
, dev
->bsr_addr
>> 12,
124 else if (size
<= dev
->bsr_len
)
125 ret
= io_remap_pfn_range(vma
, vma
->vm_start
,
126 dev
->bsr_addr
>> PAGE_SHIFT
,
127 size
, vma
->vm_page_prot
);
137 static int bsr_open(struct inode
*inode
, struct file
*filp
)
139 struct cdev
*cdev
= inode
->i_cdev
;
140 struct bsr_dev
*dev
= container_of(cdev
, struct bsr_dev
, bsr_cdev
);
142 filp
->private_data
= dev
;
146 static const struct file_operations bsr_fops
= {
147 .owner
= THIS_MODULE
,
150 .llseek
= noop_llseek
,
153 static void bsr_cleanup_devs(void)
155 struct bsr_dev
*cur
, *n
;
157 list_for_each_entry_safe(cur
, n
, &bsr_devs
, bsr_list
) {
158 if (cur
->bsr_device
) {
159 cdev_del(&cur
->bsr_cdev
);
160 device_del(cur
->bsr_device
);
162 list_del(&cur
->bsr_list
);
167 static int bsr_add_node(struct device_node
*bn
)
169 int bsr_stride_len
, bsr_bytes_len
, num_bsr_devs
;
170 const u32
*bsr_stride
;
171 const u32
*bsr_bytes
;
175 bsr_stride
= of_get_property(bn
, "ibm,lock-stride", &bsr_stride_len
);
176 bsr_bytes
= of_get_property(bn
, "ibm,#lock-bytes", &bsr_bytes_len
);
178 if (!bsr_stride
|| !bsr_bytes
||
179 (bsr_stride_len
!= bsr_bytes_len
)) {
180 printk(KERN_ERR
"bsr of-node has missing/incorrect property\n");
184 num_bsr_devs
= bsr_bytes_len
/ sizeof(u32
);
186 for (i
= 0 ; i
< num_bsr_devs
; i
++) {
187 struct bsr_dev
*cur
= kzalloc(sizeof(struct bsr_dev
),
193 printk(KERN_ERR
"Unable to alloc bsr dev\n");
198 result
= of_address_to_resource(bn
, i
, &res
);
200 printk(KERN_ERR
"bsr of-node has invalid reg property, skipping\n");
205 cur
->bsr_minor
= i
+ total_bsr_devs
;
206 cur
->bsr_addr
= res
.start
;
207 cur
->bsr_len
= resource_size(&res
);
208 cur
->bsr_bytes
= bsr_bytes
[i
];
209 cur
->bsr_stride
= bsr_stride
[i
];
210 cur
->bsr_dev
= MKDEV(bsr_major
, i
+ total_bsr_devs
);
212 /* if we have a bsr_len of > 4k and less then PAGE_SIZE (64k pages) */
213 /* we can only map 4k of it, so only advertise the 4k in sysfs */
214 if (cur
->bsr_len
> 4096 && cur
->bsr_len
< PAGE_SIZE
)
217 switch(cur
->bsr_bytes
) {
219 cur
->bsr_type
= BSR_8
;
222 cur
->bsr_type
= BSR_16
;
225 cur
->bsr_type
= BSR_64
;
228 cur
->bsr_type
= BSR_128
;
231 cur
->bsr_type
= BSR_4096
;
234 cur
->bsr_type
= BSR_UNKNOWN
;
237 cur
->bsr_num
= bsr_types
[cur
->bsr_type
];
238 snprintf(cur
->bsr_name
, 32, "bsr%d_%d",
239 cur
->bsr_bytes
, cur
->bsr_num
);
241 cdev_init(&cur
->bsr_cdev
, &bsr_fops
);
242 result
= cdev_add(&cur
->bsr_cdev
, cur
->bsr_dev
, 1);
248 cur
->bsr_device
= device_create(bsr_class
, NULL
, cur
->bsr_dev
,
249 cur
, "%s", cur
->bsr_name
);
250 if (IS_ERR(cur
->bsr_device
)) {
251 printk(KERN_ERR
"device_create failed for %s\n",
253 cdev_del(&cur
->bsr_cdev
);
258 bsr_types
[cur
->bsr_type
] = cur
->bsr_num
+ 1;
259 list_add_tail(&cur
->bsr_list
, &bsr_devs
);
262 total_bsr_devs
+= num_bsr_devs
;
272 static int bsr_create_devs(struct device_node
*bn
)
277 ret
= bsr_add_node(bn
);
282 bn
= of_find_compatible_node(bn
, NULL
, "ibm,bsr");
287 static int __init
bsr_init(void)
289 struct device_node
*np
;
293 np
= of_find_compatible_node(NULL
, NULL
, "ibm,bsr");
297 bsr_class
= class_create(THIS_MODULE
, "bsr");
298 if (IS_ERR(bsr_class
)) {
299 printk(KERN_ERR
"class_create() failed for bsr_class\n");
300 ret
= PTR_ERR(bsr_class
);
303 bsr_class
->dev_groups
= bsr_dev_groups
;
305 ret
= alloc_chrdev_region(&bsr_dev
, 0, BSR_MAX_DEVS
, "bsr");
306 bsr_major
= MAJOR(bsr_dev
);
308 printk(KERN_ERR
"alloc_chrdev_region() failed for bsr\n");
312 ret
= bsr_create_devs(np
);
321 unregister_chrdev_region(bsr_dev
, BSR_MAX_DEVS
);
324 class_destroy(bsr_class
);
334 static void __exit
bsr_exit(void)
340 class_destroy(bsr_class
);
343 unregister_chrdev_region(MKDEV(bsr_major
, 0), BSR_MAX_DEVS
);
346 module_init(bsr_init
);
347 module_exit(bsr_exit
);
348 MODULE_LICENSE("GPL");
349 MODULE_AUTHOR("Sonny Rao <sonnyrao@us.ibm.com>");