1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2020, Intel Corporation
6 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
10 #include <linux/slab.h>
11 #include <linux/vmalloc.h>
15 static DEFINE_IDA(nvm_ida
);
18 * tb_nvm_alloc() - Allocate new NVM structure
19 * @dev: Device owning the NVM
21 * Allocates new NVM structure with unique @id and returns it. In case
22 * of error returns ERR_PTR().
24 struct tb_nvm
*tb_nvm_alloc(struct device
*dev
)
29 nvm
= kzalloc(sizeof(*nvm
), GFP_KERNEL
);
31 return ERR_PTR(-ENOMEM
);
33 ret
= ida_simple_get(&nvm_ida
, 0, 0, GFP_KERNEL
);
46 * tb_nvm_add_active() - Adds active NVMem device to NVM
48 * @size: Size of the active NVM in bytes
49 * @reg_read: Pointer to the function to read the NVM (passed directly to the
52 * Registers new active NVmem device for @nvm. The @reg_read is called
53 * directly from NVMem so it must handle possible concurrent access if
54 * needed. The first parameter passed to @reg_read is @nvm structure.
55 * Returns %0 in success and negative errno otherwise.
57 int tb_nvm_add_active(struct tb_nvm
*nvm
, size_t size
, nvmem_reg_read_t reg_read
)
59 struct nvmem_config config
;
60 struct nvmem_device
*nvmem
;
62 memset(&config
, 0, sizeof(config
));
64 config
.name
= "nvm_active";
65 config
.reg_read
= reg_read
;
66 config
.read_only
= true;
71 config
.dev
= nvm
->dev
;
72 config
.owner
= THIS_MODULE
;
75 nvmem
= nvmem_register(&config
);
77 return PTR_ERR(nvmem
);
84 * tb_nvm_write_buf() - Write data to @nvm buffer
86 * @offset: Offset where to write the data
87 * @val: Data buffer to write
88 * @bytes: Number of bytes to write
90 * Helper function to cache the new NVM image before it is actually
91 * written to the flash. Copies @bytes from @val to @nvm->buf starting
94 int tb_nvm_write_buf(struct tb_nvm
*nvm
, unsigned int offset
, void *val
,
98 nvm
->buf
= vmalloc(NVM_MAX_SIZE
);
103 nvm
->flushed
= false;
104 nvm
->buf_data_size
= offset
+ bytes
;
105 memcpy(nvm
->buf
+ offset
, val
, bytes
);
110 * tb_nvm_add_non_active() - Adds non-active NVMem device to NVM
111 * @nvm: NVM structure
112 * @size: Size of the non-active NVM in bytes
113 * @reg_write: Pointer to the function to write the NVM (passed directly
114 * to the NVMem device)
116 * Registers new non-active NVmem device for @nvm. The @reg_write is called
117 * directly from NVMem so it must handle possible concurrent access if
118 * needed. The first parameter passed to @reg_write is @nvm structure.
119 * Returns %0 in success and negative errno otherwise.
121 int tb_nvm_add_non_active(struct tb_nvm
*nvm
, size_t size
,
122 nvmem_reg_write_t reg_write
)
124 struct nvmem_config config
;
125 struct nvmem_device
*nvmem
;
127 memset(&config
, 0, sizeof(config
));
129 config
.name
= "nvm_non_active";
130 config
.reg_write
= reg_write
;
131 config
.root_only
= true;
134 config
.word_size
= 4;
136 config
.dev
= nvm
->dev
;
137 config
.owner
= THIS_MODULE
;
140 nvmem
= nvmem_register(&config
);
142 return PTR_ERR(nvmem
);
144 nvm
->non_active
= nvmem
;
149 * tb_nvm_free() - Release NVM and its resources
150 * @nvm: NVM structure to release
152 * Releases NVM and the NVMem devices if they were registered.
154 void tb_nvm_free(struct tb_nvm
*nvm
)
158 nvmem_unregister(nvm
->non_active
);
160 nvmem_unregister(nvm
->active
);
162 ida_simple_remove(&nvm_ida
, nvm
->id
);
167 void tb_nvm_exit(void)
169 ida_destroy(&nvm_ida
);