mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
50f2de6126
It moves a bunch of header files included in hardware.h and itself from mach-imx/include/mach to mach-imx, and updates users to include hardware.h rather than mach/hardware.h. The files in mach-imx/devices will need to include "../hardware.h". Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Arnd Bergmann <arnd@arndb.de>
40 lines
1012 B
C
40 lines
1012 B
C
/*
|
|
* Copyright 2011 Freescale Semiconductor, Inc.
|
|
* Copyright 2011 Linaro Ltd.
|
|
*
|
|
* The code contained herein is licensed under the GNU General Public
|
|
* License. You may obtain a copy of the GNU General Public License
|
|
* Version 2 or later at the following locations:
|
|
*
|
|
* http://www.opensource.org/licenses/gpl-license.html
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <asm/page.h>
|
|
#include <asm/sizes.h>
|
|
#include <asm/mach/map.h>
|
|
|
|
#include "hardware.h"
|
|
|
|
static struct map_desc imx_lluart_desc = {
|
|
#ifdef CONFIG_DEBUG_IMX6Q_UART2
|
|
.virtual = MX6Q_IO_P2V(MX6Q_UART2_BASE_ADDR),
|
|
.pfn = __phys_to_pfn(MX6Q_UART2_BASE_ADDR),
|
|
.length = MX6Q_UART2_SIZE,
|
|
.type = MT_DEVICE,
|
|
#endif
|
|
#ifdef CONFIG_DEBUG_IMX6Q_UART4
|
|
.virtual = MX6Q_IO_P2V(MX6Q_UART4_BASE_ADDR),
|
|
.pfn = __phys_to_pfn(MX6Q_UART4_BASE_ADDR),
|
|
.length = MX6Q_UART4_SIZE,
|
|
.type = MT_DEVICE,
|
|
#endif
|
|
};
|
|
|
|
void __init imx_lluart_map_io(void)
|
|
{
|
|
if (imx_lluart_desc.virtual)
|
|
iotable_init(&imx_lluart_desc, 1);
|
|
}
|