summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap/am33xx_scrm.c
blob: 67529f82262bd8dae3b99a603f3deee2332fd9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
 * (C) Copyright 2014 Sascha Hauer <s.hauer@pengutronix.de>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
#include <common.h>
#include <io.h>
#include <errno.h>
#include <sizes.h>
#include <init.h>
#include <of.h>
#include <asm/barebox-arm.h>
#include <asm/memory.h>
#include <mach/am33xx-silicon.h>

static int am33xx_scrm_probe(struct device_d *dev)
{
	arm_add_mem_device("ram0", 0x80000000, am335x_sdram_size());

	return 0;
}

static __maybe_unused struct of_device_id am33xx_scrm_dt_ids[] = {
	{
		.compatible = "ti,am3-scrm",
	}, {
		/* sentinel */
	}
};

static struct driver_d am33xx_scrm_driver = {
	.name   = "am33xx-scrm",
	.probe  = am33xx_scrm_probe,
	.of_compatible = DRV_OF_COMPAT(am33xx_scrm_dt_ids),
};

static int am33xx_scrm_init(void)
{
	return platform_driver_register(&am33xx_scrm_driver);
}

mem_initcall(am33xx_scrm_init);