/* * (C) Copyright 2014 Sascha Hauer * * 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 #include #include #include #include #include #include #include #include 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-scm", }, { /* 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);