ibm440sp_common.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * arch/ppc/syslib/ibm440sp_common.c
  3. *
  4. * PPC440SP system library
  5. *
  6. * Matt Porter <mporter@kernel.crashing.org>
  7. * Copyright 2002-2005 MontaVista Software Inc.
  8. *
  9. * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
  10. * Copyright (c) 2003, 2004 Zultys Technologies
  11. *
  12. * This program is free software; you can redistribute it and/or modify it
  13. * under the terms of the GNU General Public License as published by the
  14. * Free Software Foundation; either version 2 of the License, or (at your
  15. * option) any later version.
  16. *
  17. */
  18. #include <linux/config.h>
  19. #include <linux/types.h>
  20. #include <linux/serial.h>
  21. #include <asm/param.h>
  22. #include <asm/ibm44x.h>
  23. #include <asm/mmu.h>
  24. #include <asm/machdep.h>
  25. #include <asm/time.h>
  26. #include <asm/ppc4xx_pic.h>
  27. /*
  28. * Read the 440SP memory controller to get size of system memory.
  29. */
  30. unsigned long __init ibm440sp_find_end_of_memory(void)
  31. {
  32. u32 i;
  33. u32 mem_size = 0;
  34. /* Read two bank sizes and sum */
  35. for (i=0; i<2; i++)
  36. switch (mfdcr(DCRN_MQ0_BS0BAS + i) & MQ0_CONFIG_SIZE_MASK) {
  37. case MQ0_CONFIG_SIZE_8M:
  38. mem_size += PPC44x_MEM_SIZE_8M;
  39. break;
  40. case MQ0_CONFIG_SIZE_16M:
  41. mem_size += PPC44x_MEM_SIZE_16M;
  42. break;
  43. case MQ0_CONFIG_SIZE_32M:
  44. mem_size += PPC44x_MEM_SIZE_32M;
  45. break;
  46. case MQ0_CONFIG_SIZE_64M:
  47. mem_size += PPC44x_MEM_SIZE_64M;
  48. break;
  49. case MQ0_CONFIG_SIZE_128M:
  50. mem_size += PPC44x_MEM_SIZE_128M;
  51. break;
  52. case MQ0_CONFIG_SIZE_256M:
  53. mem_size += PPC44x_MEM_SIZE_256M;
  54. break;
  55. case MQ0_CONFIG_SIZE_512M:
  56. mem_size += PPC44x_MEM_SIZE_512M;
  57. break;
  58. case MQ0_CONFIG_SIZE_1G:
  59. mem_size += PPC44x_MEM_SIZE_1G;
  60. break;
  61. case MQ0_CONFIG_SIZE_2G:
  62. mem_size += PPC44x_MEM_SIZE_2G;
  63. break;
  64. default:
  65. break;
  66. }
  67. return mem_size;
  68. }