common.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * linux/arch/arm/plat-omap/common.c
  3. *
  4. * Code common to all OMAP machines.
  5. * The file is created by Tony Lindgren <tony@atomide.com>
  6. *
  7. * Copyright (C) 2009 Texas Instruments
  8. * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/io.h>
  17. #include <linux/dma-mapping.h>
  18. #include <plat/common.h>
  19. #include <plat/board.h>
  20. #include <plat/vram.h>
  21. #include <plat/dsp.h>
  22. #include <plat/omap-secure.h>
  23. #define NO_LENGTH_CHECK 0xffffffff
  24. struct omap_board_config_kernel *omap_board_config __initdata;
  25. int omap_board_config_size;
  26. static const void *__init get_config(u16 tag, size_t len,
  27. int skip, size_t *len_out)
  28. {
  29. struct omap_board_config_kernel *kinfo = NULL;
  30. int i;
  31. /* Try to find the config from the board-specific structures
  32. * in the kernel. */
  33. for (i = 0; i < omap_board_config_size; i++) {
  34. if (omap_board_config[i].tag == tag) {
  35. if (skip == 0) {
  36. kinfo = &omap_board_config[i];
  37. break;
  38. } else {
  39. skip--;
  40. }
  41. }
  42. }
  43. if (kinfo == NULL)
  44. return NULL;
  45. return kinfo->data;
  46. }
  47. const void *__init __omap_get_config(u16 tag, size_t len, int nr)
  48. {
  49. return get_config(tag, len, nr, NULL);
  50. }
  51. const void *__init omap_get_var_config(u16 tag, size_t *len)
  52. {
  53. return get_config(tag, NO_LENGTH_CHECK, 0, len);
  54. }
  55. void __init omap_reserve(void)
  56. {
  57. omap_vram_reserve_sdram_memblock();
  58. omap_dsp_reserve_sdram_memblock();
  59. omap_secure_ram_reserve_memblock();
  60. omap_barrier_reserve_memblock();
  61. }
  62. void __init omap_init_consistent_dma_size(void)
  63. {
  64. #ifdef CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE
  65. init_consistent_dma_size(CONFIG_FB_OMAP_CONSISTENT_DMA_SIZE << 20);
  66. #endif
  67. }