mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
ed7481c7d1
Currently, CONFIG_BCM2835 is defined for all BCM283x builds and _BCM2836 is defined when building for that SoC. That means there isn't a single define that means "exactly BCM2835". This will complicate future patches where BCM2835-vs-anything-else needs to be determined simply. Modify the code to define one or the other of CONFIG_BCM2835/BCM2836 so future patches are simpler. Signed-off-by: Stephen Warren <swarren@wwwdotorg.org> Reviewed-by: Tom Rini <trini@konsulko.com>
22 lines
345 B
C
22 lines
345 B
C
/*
|
|
* Copyright 2015 Stephen Warren
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <phys2bus.h>
|
|
|
|
unsigned long phys_to_bus(unsigned long phys)
|
|
{
|
|
#ifndef CONFIG_BCM2835
|
|
return 0xc0000000 | phys;
|
|
#else
|
|
return 0x40000000 | phys;
|
|
#endif
|
|
}
|
|
|
|
unsigned long bus_to_phys(unsigned long bus)
|
|
{
|
|
return bus & ~0xc0000000;
|
|
}
|