diff options
| author | Kevin Hilman <khilman@linaro.org> | 2013-08-21 13:16:55 -0400 |
|---|---|---|
| committer | Kevin Hilman <khilman@linaro.org> | 2013-08-21 13:17:18 -0400 |
| commit | bfa664f21b0357f2ad9cdf519f594ece36ec8f64 (patch) | |
| tree | f377028eba58633d917d65c1141977b2e8ca9529 /include | |
| parent | 5515d9981f5f30e82d096921f86ba016911c9ea8 (diff) | |
| parent | b4f173752a56187bd55752b0474429202f2ab1d3 (diff) | |
Merge tag 'tegra-for-3.12-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra into next/soc
From: Stephen Warren:
ARM: tegra: core SoC enhancements for 3.12
This branch includes a number of enhancements to core SoC support for
Tegra devices. The major new features are:
* Adds a new CPU-power-gated cpuidle state for Tegra114.
* Adds initial system suspend support for Tegra114, initially supporting
just CPU-power-gating during suspend.
* Adds "LP1" suspend mode support for all of Tegra20/30/114. This mode
both gates CPU power, and places the DRAM into self-refresh mode.
* A new DT-driven PCIe driver to Tegra20/30. The driver is also moved
from arch/arm/mach-tegra/ to drivers/pci/host/.
The PCIe driver work depends on the following tag from Thomas Petazzoni:
git://git.infradead.org/linux-mvebu.git mis-3.12.2
... which is merged into the middle of this pull request.
* tag 'tegra-for-3.12-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra: (33 commits)
ARM: tegra: disable LP2 cpuidle state if PCIe is enabled
MAINTAINERS: Add myself as Tegra PCIe maintainer
PCI: tegra: set up PADS_REFCLK_CFG1
PCI: tegra: Add Tegra 30 PCIe support
PCI: tegra: Move PCIe driver to drivers/pci/host
PCI: msi: add default MSI operations for !HAVE_GENERIC_HARDIRQS platforms
ARM: tegra: add LP1 suspend support for Tegra114
ARM: tegra: add LP1 suspend support for Tegra20
ARM: tegra: add LP1 suspend support for Tegra30
ARM: tegra: add common LP1 suspend support
clk: tegra114: add LP1 suspend/resume support
ARM: tegra: config the polarity of the request of sys clock
ARM: tegra: add common resume handling code for LP1 resuming
ARM: pci: add ->add_bus() and ->remove_bus() hooks to hw_pci
of: pci: add registry of MSI chips
PCI: Introduce new MSI chip infrastructure
PCI: remove ARCH_SUPPORTS_MSI kconfig option
PCI: use weak functions for MSI arch-specific functions
ARM: tegra: unify Tegra's Kconfig a bit more
ARM: tegra: remove the limitation that Tegra114 can't support suspend
...
Signed-off-by: Kevin Hilman <khilman@linaro.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/msi.h | 21 | ||||
| -rw-r--r-- | include/linux/of_pci.h | 12 | ||||
| -rw-r--r-- | include/linux/pci.h | 1 | ||||
| -rw-r--r-- | include/linux/tegra-cpuidle.h | 19 |
4 files changed, 52 insertions, 1 deletions
diff --git a/include/linux/msi.h b/include/linux/msi.h index ee66f3a12fb6..b17ead818aec 100644 --- a/include/linux/msi.h +++ b/include/linux/msi.h | |||
| @@ -51,12 +51,31 @@ struct msi_desc { | |||
| 51 | }; | 51 | }; |
| 52 | 52 | ||
| 53 | /* | 53 | /* |
| 54 | * The arch hook for setup up msi irqs | 54 | * The arch hooks to setup up msi irqs. Those functions are |
| 55 | * implemented as weak symbols so that they /can/ be overriden by | ||
| 56 | * architecture specific code if needed. | ||
| 55 | */ | 57 | */ |
| 56 | int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc); | 58 | int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc); |
| 57 | void arch_teardown_msi_irq(unsigned int irq); | 59 | void arch_teardown_msi_irq(unsigned int irq); |
| 58 | int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type); | 60 | int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type); |
| 59 | void arch_teardown_msi_irqs(struct pci_dev *dev); | 61 | void arch_teardown_msi_irqs(struct pci_dev *dev); |
| 60 | int arch_msi_check_device(struct pci_dev* dev, int nvec, int type); | 62 | int arch_msi_check_device(struct pci_dev* dev, int nvec, int type); |
| 63 | void arch_restore_msi_irqs(struct pci_dev *dev, int irq); | ||
| 64 | |||
| 65 | void default_teardown_msi_irqs(struct pci_dev *dev); | ||
| 66 | void default_restore_msi_irqs(struct pci_dev *dev, int irq); | ||
| 67 | |||
| 68 | struct msi_chip { | ||
| 69 | struct module *owner; | ||
| 70 | struct device *dev; | ||
| 71 | struct device_node *of_node; | ||
| 72 | struct list_head list; | ||
| 73 | |||
| 74 | int (*setup_irq)(struct msi_chip *chip, struct pci_dev *dev, | ||
| 75 | struct msi_desc *desc); | ||
| 76 | void (*teardown_irq)(struct msi_chip *chip, unsigned int irq); | ||
| 77 | int (*check_device)(struct msi_chip *chip, struct pci_dev *dev, | ||
| 78 | int nvec, int type); | ||
| 79 | }; | ||
| 61 | 80 | ||
| 62 | #endif /* LINUX_MSI_H */ | 81 | #endif /* LINUX_MSI_H */ |
diff --git a/include/linux/of_pci.h b/include/linux/of_pci.h index 7a04826018c0..fd9c408631a0 100644 --- a/include/linux/of_pci.h +++ b/include/linux/of_pci.h | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | #define __OF_PCI_H | 2 | #define __OF_PCI_H |
| 3 | 3 | ||
| 4 | #include <linux/pci.h> | 4 | #include <linux/pci.h> |
| 5 | #include <linux/msi.h> | ||
| 5 | 6 | ||
| 6 | struct pci_dev; | 7 | struct pci_dev; |
| 7 | struct of_irq; | 8 | struct of_irq; |
| @@ -13,4 +14,15 @@ struct device_node *of_pci_find_child_device(struct device_node *parent, | |||
| 13 | int of_pci_get_devfn(struct device_node *np); | 14 | int of_pci_get_devfn(struct device_node *np); |
| 14 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); | 15 | int of_pci_parse_bus_range(struct device_node *node, struct resource *res); |
| 15 | 16 | ||
| 17 | #if defined(CONFIG_OF) && defined(CONFIG_PCI_MSI) | ||
| 18 | int of_pci_msi_chip_add(struct msi_chip *chip); | ||
| 19 | void of_pci_msi_chip_remove(struct msi_chip *chip); | ||
| 20 | struct msi_chip *of_pci_find_msi_chip_by_node(struct device_node *of_node); | ||
| 21 | #else | ||
| 22 | static inline int of_pci_msi_chip_add(struct msi_chip *chip) { return -EINVAL; } | ||
| 23 | static inline void of_pci_msi_chip_remove(struct msi_chip *chip) { } | ||
| 24 | static inline struct msi_chip * | ||
| 25 | of_pci_find_msi_chip_by_node(struct device_node *of_node) { return NULL; } | ||
| 26 | #endif | ||
| 27 | |||
| 16 | #endif | 28 | #endif |
diff --git a/include/linux/pci.h b/include/linux/pci.h index 0fd1f1582fa1..4044e3c00609 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -433,6 +433,7 @@ struct pci_bus { | |||
| 433 | struct resource busn_res; /* bus numbers routed to this bus */ | 433 | struct resource busn_res; /* bus numbers routed to this bus */ |
| 434 | 434 | ||
| 435 | struct pci_ops *ops; /* configuration access functions */ | 435 | struct pci_ops *ops; /* configuration access functions */ |
| 436 | struct msi_chip *msi; /* MSI controller */ | ||
| 436 | void *sysdata; /* hook for sys-specific extension */ | 437 | void *sysdata; /* hook for sys-specific extension */ |
| 437 | struct proc_dir_entry *procdir; /* directory entry in /proc/bus/pci */ | 438 | struct proc_dir_entry *procdir; /* directory entry in /proc/bus/pci */ |
| 438 | 439 | ||
diff --git a/include/linux/tegra-cpuidle.h b/include/linux/tegra-cpuidle.h new file mode 100644 index 000000000000..dda3647242a4 --- /dev/null +++ b/include/linux/tegra-cpuidle.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms and conditions of the GNU General Public License, | ||
| 6 | * version 2, as published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 11 | * more details. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __LINUX_TEGRA_CPUIDLE_H__ | ||
| 15 | #define __LINUX_TEGRA_CPUIDLE_H__ | ||
| 16 | |||
| 17 | void tegra_cpuidle_pcie_irqs_in_use(void); | ||
| 18 | |||
| 19 | #endif | ||
