board-harmony-pcie.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 <mach/pinmux-tegra20.h>
  24. #include "board.h"
  25. #include "board-harmony.h"
  26. #ifdef CONFIG_TEGRA_PCI
  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(TEGRA_GPIO_EN_VDD_1V05_GPIO, "EN_VDD_1V05");
  34. if (err)
  35. return err;
  36. gpio_direction_output(TEGRA_GPIO_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(TEGRA_GPIO_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