blob: adc3efe979b3cd6b09987e3180374b4a1f888ac3 [file] [log] [blame]
Stephen Warren54862bf2011-12-16 15:12:31 -07001/*
2 * Copyright (c) 2011, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
Stephen Warrena58116f2011-12-16 15:12:32 -070015#include <linux/device.h>
16#include <linux/kernel.h>
17#include <linux/notifier.h>
Stephen Warren54862bf2011-12-16 15:12:31 -070018#include <linux/of.h>
Stephen Warrena58116f2011-12-16 15:12:32 -070019#include <linux/string.h>
Stephen Warren54862bf2011-12-16 15:12:31 -070020
21#include <mach/gpio-tegra.h>
22#include <mach/pinmux.h>
23
24#include "board-pinmux.h"
25#include "devices.h"
26
Stephen Warrena58116f2011-12-16 15:12:32 -070027struct tegra_board_pinmux_conf *confs[2];
Stephen Warren54862bf2011-12-16 15:12:31 -070028
Stephen Warrena58116f2011-12-16 15:12:32 -070029static void tegra_board_pinmux_setup_gpios(void)
Stephen Warren54862bf2011-12-16 15:12:31 -070030{
Stephen Warren54862bf2011-12-16 15:12:31 -070031 int i;
32
Stephen Warrena58116f2011-12-16 15:12:32 -070033 for (i = 0; i < ARRAY_SIZE(confs); i++) {
34 if (!confs[i])
35 continue;
36
37 tegra_gpio_config(confs[i]->gpios, confs[i]->gpio_count);
38 }
39}
40
41static void tegra_board_pinmux_setup_pinmux(void)
42{
43 int i;
Stephen Warren54862bf2011-12-16 15:12:31 -070044
45 for (i = 0; i < ARRAY_SIZE(confs); i++) {
46 if (!confs[i])
47 continue;
48
49 tegra_pinmux_config_table(confs[i]->pgs, confs[i]->pg_count);
50
51 if (confs[i]->drives)
52 tegra_drive_pinmux_config_table(confs[i]->drives,
53 confs[i]->drive_count);
Stephen Warren54862bf2011-12-16 15:12:31 -070054 }
Stephen Warrena58116f2011-12-16 15:12:32 -070055}
56
57static int tegra_board_pinmux_bus_notify(struct notifier_block *nb,
58 unsigned long event, void *vdev)
59{
60 static bool had_gpio;
61 static bool had_pinmux;
62
63 struct device *dev = vdev;
64 const char *devname;
65
66 if (event != BUS_NOTIFY_BOUND_DRIVER)
67 return NOTIFY_DONE;
68
69 devname = dev_name(dev);
70
71 if (!had_gpio && !strcmp(devname, GPIO_DEV)) {
72 tegra_board_pinmux_setup_gpios();
73 had_gpio = true;
74 } else if (!had_pinmux && !strcmp(devname, PINMUX_DEV)) {
75 tegra_board_pinmux_setup_pinmux();
76 had_pinmux = true;
77 }
78
79 if (had_gpio && had_pinmux)
80 return NOTIFY_STOP_MASK;
81 else
82 return NOTIFY_DONE;
83}
84
85static struct notifier_block nb = {
86 .notifier_call = tegra_board_pinmux_bus_notify,
87};
88
89static struct platform_device *devices[] = {
90 &tegra_gpio_device,
91 &tegra_pinmux_device,
92};
93
94void tegra_board_pinmux_init(struct tegra_board_pinmux_conf *conf_a,
95 struct tegra_board_pinmux_conf *conf_b)
96{
97 confs[0] = conf_a;
98 confs[1] = conf_b;
99
100 bus_register_notifier(&platform_bus_type, &nb);
Stephen Warren54862bf2011-12-16 15:12:31 -0700101
102 if (!of_machine_is_compatible("nvidia,tegra20"))
103 platform_add_devices(devices, ARRAY_SIZE(devices));
104}