board-harmony-pcie.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * arch/arm/mach-tegra/board-harmony-pcie.c
  3. *
  4. * Copyright (C) 2010 CompuLab, Ltd.
  5. * Mike Rapoport <mike@compulab.co.il>
  6. *
  7. * This software is licensed under the terms of the GNU General Public
  8. * License version 2, as published by the Free Software Foundation, and
  9. * may be copied, distributed, and modified under those terms.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #include <linux/kernel.h>
  18. #include <linux/gpio.h>
  19. #include <linux/err.h>
  20. #include <linux/regulator/consumer.h>
  21. #include <asm/mach-types.h>
  22. #include <mach/pinmux.h>
  23. #include "board.h"
  24. #ifdef CONFIG_TEGRA_PCI
  25. /* GPIO 3 of the PMIC */
  26. #define EN_VDD_1V05_GPIO (TEGRA_NR_GPIOS + 2)
  27. static int __init harmony_pcie_init(void)
  28. {
  29. struct regulator *regulator = NULL;
  30. int err;
  31. if (!machine_is_harmony())
  32. return 0;
  33. err = gpio_request(EN_VDD_1V05_GPIO, "EN_VDD_1V05");
  34. if (err)
  35. return err;
  36. gpio_direction_output(EN_VDD_1V05_GPIO, 1);
  37. regulator = regulator_get(NULL, "pex_clk");
  38. if (IS_ERR_OR_NULL(regulator))
  39. goto err_reg;
  40. regulator_enable(regulator);
  41. tegra_pinmux_set_tristate(TEGRA_PINGROUP_GPV, TEGRA_TRI_NORMAL);
  42. tegra_pinmux_set_tristate(TEGRA_PINGROUP_SLXA, TEGRA_TRI_NORMAL);
  43. tegra_pinmux_set_tristate(TEGRA_PINGROUP_SLXK, TEGRA_TRI_NORMAL);
  44. err = tegra_pcie_init(true, true);
  45. if (err)
  46. goto err_pcie;
  47. return 0;
  48. err_pcie:
  49. tegra_pinmux_set_tristate(TEGRA_PINGROUP_GPV, TEGRA_TRI_TRISTATE);
  50. tegra_pinmux_set_tristate(TEGRA_PINGROUP_SLXA, TEGRA_TRI_TRISTATE);
  51. tegra_pinmux_set_tristate(TEGRA_PINGROUP_SLXK, TEGRA_TRI_TRISTATE);
  52. regulator_disable(regulator);
  53. regulator_put(regulator);
  54. err_reg:
  55. gpio_free(EN_VDD_1V05_GPIO);
  56. return err;
  57. }
  58. /* PCI should be initialized after I2C, mfd and regulators */
  59. subsys_initcall_sync(harmony_pcie_init);
  60. #endif