2 * Generic on-chip SRAM allocation driver
4 * Copyright (C) 2012 Philipp Zabel, Pengutronix
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21 #include <linux/kernel.h>
22 #include <linux/init.h>
23 #include <linux/clk.h>
24 #include <linux/err.h>
27 #include <linux/platform_device.h>
28 #include <linux/slab.h>
29 #include <linux/spinlock.h>
30 #include <linux/genalloc.h>
32 #define SRAM_GRANULARITY 32
35 struct gen_pool
*pool
;
39 static int sram_probe(struct platform_device
*pdev
)
41 void __iomem
*virt_base
;
42 struct sram_dev
*sram
;
47 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
51 size
= resource_size(res
);
53 virt_base
= devm_request_and_ioremap(&pdev
->dev
, res
);
55 return -EADDRNOTAVAIL
;
57 sram
= devm_kzalloc(&pdev
->dev
, sizeof(*sram
), GFP_KERNEL
);
61 sram
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
62 if (IS_ERR(sram
->clk
))
65 clk_prepare_enable(sram
->clk
);
67 sram
->pool
= devm_gen_pool_create(&pdev
->dev
, ilog2(SRAM_GRANULARITY
), -1);
71 ret
= gen_pool_add_virt(sram
->pool
, (unsigned long)virt_base
,
72 res
->start
, size
, -1);
74 gen_pool_destroy(sram
->pool
);
78 platform_set_drvdata(pdev
, sram
);
80 dev_dbg(&pdev
->dev
, "SRAM pool: %ld KiB @ 0x%p\n", size
/ 1024, virt_base
);
85 static int sram_remove(struct platform_device
*pdev
)
87 struct sram_dev
*sram
= platform_get_drvdata(pdev
);
89 if (gen_pool_avail(sram
->pool
) < gen_pool_size(sram
->pool
))
90 dev_dbg(&pdev
->dev
, "removed while SRAM allocated\n");
92 gen_pool_destroy(sram
->pool
);
95 clk_disable_unprepare(sram
->clk
);
101 static struct of_device_id sram_dt_ids
[] = {
102 { .compatible
= "mmio-sram" },
107 static struct platform_driver sram_driver
= {
110 .of_match_table
= of_match_ptr(sram_dt_ids
),
113 .remove
= sram_remove
,
116 static int __init
sram_init(void)
118 return platform_driver_register(&sram_driver
);
121 postcore_initcall(sram_init
);