mvmfp.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * (C) Copyright 2010
  3. * Marvell Semiconductor <www.marvell.com>
  4. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>,
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  22. * MA 02110-1301 USA
  23. */
  24. #include <common.h>
  25. #include <asm/io.h>
  26. #include <mvmfp.h>
  27. #include <asm/arch/mfp.h>
  28. /*
  29. * mfp_config
  30. *
  31. * On most of Marvell SoCs (ex. ARMADA100) there is Multi-Funtion-Pin
  32. * configuration registers to configure each GPIO/Function pin on the
  33. * SoC.
  34. *
  35. * This function reads the array of values for
  36. * MFPR_X registers and programms them into respective
  37. * Multi-Function Pin registers.
  38. * It supports - Alternate Function Selection programming.
  39. *
  40. * Whereas,
  41. * The Configureation value is constructed using MFP()
  42. * array consists of 32bit values as defined in MFP(xx,xx..) macro
  43. */
  44. void mfp_config(u32 *mfp_cfgs)
  45. {
  46. u32 *p_mfpr = NULL;
  47. u32 cfg_val, val;
  48. do {
  49. cfg_val = *mfp_cfgs++;
  50. /* exit if End of configuration table detected */
  51. if (cfg_val == MFP_EOC)
  52. break;
  53. p_mfpr = (u32 *)(MV_MFPR_BASE
  54. + MFP_REG_GET_OFFSET(cfg_val));
  55. /* Write a mfg register as per configuration */
  56. val = 0;
  57. if (cfg_val & MFP_AF_FLAG)
  58. /* Abstract and program Afternate-Func Selection */
  59. val |= cfg_val & MFP_AF_MASK;
  60. if (cfg_val & MFP_EDGE_FLAG)
  61. /* Abstract and program Edge configuration */
  62. val |= cfg_val & MFP_LPM_EDGE_MASK;
  63. if (cfg_val & MFP_DRIVE_FLAG)
  64. /* Abstract and program Drive configuration */
  65. val |= cfg_val & MFP_DRIVE_MASK;
  66. if (cfg_val & MFP_PULL_FLAG)
  67. /* Abstract and program Pullup/down configuration */
  68. val |= cfg_val & MFP_PULL_MASK;
  69. writel(val, p_mfpr);
  70. } while (1);
  71. /*
  72. * perform a read-back of any MFPR register to make sure the
  73. * previous writings are finished
  74. */
  75. readl(p_mfpr);
  76. }