mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-03 06:16:43 +07:00
14efc54a94
Now that the SRAM is initialized by the mmio-sram driver, .map_io is useless. remove it. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
30 lines
700 B
C
30 lines
700 B
C
/*
|
|
* Chip-specific setup code for the SAMA5D3 family
|
|
*
|
|
* Copyright (C) 2013 Atmel,
|
|
* 2013 Ludovic Desroches <ludovic.desroches@atmel.com>
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <linux/clk/at91_pmc.h>
|
|
|
|
#include <asm/irq.h>
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach/map.h>
|
|
#include <mach/sama5d3.h>
|
|
#include <mach/cpu.h>
|
|
|
|
#include "soc.h"
|
|
#include "generic.h"
|
|
#include "sam9_smc.h"
|
|
|
|
/* --------------------------------------------------------------------
|
|
* AT91SAM9x5 processor initialization
|
|
* -------------------------------------------------------------------- */
|
|
|
|
AT91_SOC_START(sama5d3)
|
|
AT91_SOC_END
|