Loading...
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Defines for the SRAM driver
4 */
5#ifndef __SRAM_H
6#define __SRAM_H
7
8struct sram_config {
9 int (*init)(void);
10 bool map_only_reserved;
11};
12
13struct sram_partition {
14 void __iomem *base;
15
16 struct gen_pool *pool;
17 struct bin_attribute battr;
18 struct mutex lock;
19 struct list_head list;
20};
21
22struct sram_dev {
23 const struct sram_config *config;
24
25 struct device *dev;
26 void __iomem *virt_base;
27 bool no_memory_wc;
28
29 struct gen_pool *pool;
30 struct clk *clk;
31
32 struct sram_partition *partition;
33 u32 partitions;
34};
35
36struct sram_reserve {
37 struct list_head list;
38 u32 start;
39 u32 size;
40 struct resource res;
41 bool export;
42 bool pool;
43 bool protect_exec;
44 const char *label;
45};
46
47#ifdef CONFIG_SRAM_EXEC
48int sram_check_protect_exec(struct sram_dev *sram, struct sram_reserve *block,
49 struct sram_partition *part);
50int sram_add_protect_exec(struct sram_partition *part);
51#else
52static inline int sram_check_protect_exec(struct sram_dev *sram,
53 struct sram_reserve *block,
54 struct sram_partition *part)
55{
56 return -ENODEV;
57}
58
59static inline int sram_add_protect_exec(struct sram_partition *part)
60{
61 return -ENODEV;
62}
63#endif /* CONFIG_SRAM_EXEC */
64#endif /* __SRAM_H */
1/*
2 * Defines for the SRAM driver
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8#ifndef __SRAM_H
9#define __SRAM_H
10
11struct sram_partition {
12 void __iomem *base;
13
14 struct gen_pool *pool;
15 struct bin_attribute battr;
16 struct mutex lock;
17 struct list_head list;
18};
19
20struct sram_dev {
21 struct device *dev;
22 void __iomem *virt_base;
23
24 struct gen_pool *pool;
25 struct clk *clk;
26
27 struct sram_partition *partition;
28 u32 partitions;
29};
30
31struct sram_reserve {
32 struct list_head list;
33 u32 start;
34 u32 size;
35 bool export;
36 bool pool;
37 bool protect_exec;
38 const char *label;
39};
40
41#ifdef CONFIG_SRAM_EXEC
42int sram_check_protect_exec(struct sram_dev *sram, struct sram_reserve *block,
43 struct sram_partition *part);
44int sram_add_protect_exec(struct sram_partition *part);
45#else
46static inline int sram_check_protect_exec(struct sram_dev *sram,
47 struct sram_reserve *block,
48 struct sram_partition *part)
49{
50 return -ENODEV;
51}
52
53static inline int sram_add_protect_exec(struct sram_partition *part)
54{
55 return -ENODEV;
56}
57#endif /* CONFIG_SRAM_EXEC */
58#endif /* __SRAM_H */