summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/omap3evm/board.c
Commit message (Collapse)AuthorAgeFilesLines
* include: Move ns16550 serial platform_data to include/platform_dataSascha Hauer2016-04-151-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* sizes.h: move include/sizes.h to include/linux/sizes.hMasahiro Yamada2015-01-081-1/+1
| | | | | | | | | | | | | | This file originates in Linux. Linux has it under include/linux/ directory since commit dccd2304cc90. Let's move it to the same place as well in barebox. This commit was generated by the following commands: find -name '*.[chS]' | xargs sed -i -e 's:<sizes.h>:<linux/sizes.h>:' git mv include/sizes.h include/linux/ Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM: remove armlinux_set_bootparams() calls from boardsSascha Hauer2014-01-061-1/+0
| | | | | | | As the place for the atags now is determined automatically the call from the boards can be removed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Set model and hostname at boardlevelSascha Hauer2013-08-161-3/+3
| | | | | | | | | | | | With multiboard support the compiletime generated BOARDINFO string gets more and more meaningless. This removes it from Kconfig and replaces it with a variable that can be set at boardlevel. Also many boards have a standard setting for the hostname in the environment. This patch also moves the standard to C code by calling barebox_set_hostname(). Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* omap_uart: rename OMAP3EVM_UARTx to OMAP_UARTxVicente Bergas2013-03-251-2/+2
| | | | | | | | use a more generic UART selection on OMAP so it can be extended to other OMAPs Signed-off-by: Vicente Bergas <vicencb@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap3 omap3evm: move lowlevel code to lowlevel.cSascha Hauer2013-01-291-158/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM OMAP: Apply RAM device register functions to boardsTeresa Gámez2012-12-211-1/+1
| | | | | | | Apply RAM and SRAM register functions to all OMAP boards. Signed-off-by: Teresa Gámez <t.gamez@phytec.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap3: Add change OMAP_ prefix to OMAP3_ for registersSascha Hauer2012-12-201-14/+14
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap3: Use device register functions in boardsSascha Hauer2012-12-191-16/+7
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap: include individual SoC filesSascha Hauer2012-12-191-1/+1
| | | | | | | - remove mach/silicon.h and include omap?-silicon.h directly - include mach/omap?-clock.h directly where needed Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Remove old, inaccurate "FileName:" cruft from ARM filesRobert P. J. Day2012-12-051-2/+0
| | | | | | | | | In addition, collapse adjacent comment blocks into one and remove extraneous blank lines. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Acked-by: Nishanth Menon <nm@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Treewide: remove address of the Free Software FoundationSascha Hauer2012-09-171-4/+0
| | | | | | | The FSF address has changed in the past. Instead of updating it each time the address changes, just drop it completely treewide. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Use DEVICE_ID_DYNAMIC where applicableSascha Hauer2012-04-161-2/+2
| | | | | | | We now have DEVICE_ID_DYNAMIC for dynamic allocation of device ids, Use it where applicable. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* omap3evm: Setup ATAGs for Linux bootSanjeev Premi2012-02-081-0/+4
| | | | | Signed-off-by: Sanjeev Premi <premi@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* omap3evm: Remove inclusion of non-existent headerSanjeev Premi2012-02-081-1/+0
| | | | | | | File 'mach/board.h' doesn't exist any more. Signed-off-by: Sanjeev Premi <premi@ti.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM omap3: call a_init from board codeSascha Hauer2012-01-171-0/+2
| | | | | | | | There is no need to call a_init before relocation, so rename the function to omap3_core_init and call it from board code. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* ARM omap3: move board_init to pure_initcallSascha Hauer2012-01-171-1/+5
| | | | | | | | | board_init initializes the mux and sdram. For both there is no need to configure this so early. Move the code to a pure_initcall and remove the surrounding unneeded code. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Tested-by: Sanjeev Premi <premi@ti.com>
* omap3evm: move to arch/arm/boards/omap3evmJean-Christophe PLAGNIOL-VILLARD2012-01-161-0/+262
this will allow to create it's own env/config Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>