2005-07-11 02:58:15 +08:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/plat-omap/common.c
|
|
|
|
*
|
|
|
|
* Code common to all OMAP machines.
|
2009-05-29 05:16:04 +08:00
|
|
|
* The file is created by Tony Lindgren <tony@atomide.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Texas Instruments
|
|
|
|
* Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
|
2005-07-11 02:58:15 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
2008-09-06 19:10:45 +08:00
|
|
|
#include <linux/io.h>
|
2011-12-06 12:45:37 +08:00
|
|
|
#include <linux/dma-mapping.h>
|
2005-07-11 02:58:15 +08:00
|
|
|
|
2009-10-21 00:40:47 +08:00
|
|
|
#include <plat/common.h>
|
2010-05-23 17:18:16 +08:00
|
|
|
#include <plat/vram.h>
|
2010-10-05 00:09:14 +08:00
|
|
|
#include <plat/dsp.h>
|
2012-04-13 20:34:26 +08:00
|
|
|
#include <plat/dma.h>
|
2005-07-11 02:58:15 +08:00
|
|
|
|
2011-06-06 22:58:23 +08:00
|
|
|
#include <plat/omap-secure.h>
|
|
|
|
|
2010-05-23 17:18:16 +08:00
|
|
|
void __init omap_reserve(void)
|
|
|
|
{
|
2010-05-23 06:59:11 +08:00
|
|
|
omap_vram_reserve_sdram_memblock();
|
2010-10-05 00:09:14 +08:00
|
|
|
omap_dsp_reserve_sdram_memblock();
|
2011-06-06 22:58:23 +08:00
|
|
|
omap_secure_ram_reserve_memblock();
|
2012-02-02 22:03:55 +08:00
|
|
|
omap_barrier_reserve_memblock();
|
2010-05-23 17:18:16 +08:00
|
|
|
}
|
2011-09-15 05:06:22 +08:00
|
|
|
|
|
|
|
void __init omap_init_consistent_dma_size(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE
|
|
|
|
init_consistent_dma_size(CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE << 20);
|
|
|
|
#endif
|
|
|
|
}
|
2012-05-10 23:57:20 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Stub function for OMAP2 so that common files
|
|
|
|
* continue to build when custom builds are used
|
|
|
|
*/
|
|
|
|
int __weak omap_secure_ram_reserve_memblock(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|