mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 13:15:57 +00:00
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
This commit is contained in:
commit
8f0121f5f7
@ -716,6 +716,7 @@
|
||||
regulator-name = "+5V_USB_HS";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
regulator-max-microvolt = <5000000>;
|
||||
regulator-boot-on;
|
||||
gpio = <&gpio TEGRA_GPIO(N, 4) GPIO_ACTIVE_HIGH>;
|
||||
enable-active-high;
|
||||
gpio-open-drain;
|
||||
@ -727,6 +728,7 @@
|
||||
regulator-name = "+5V_USB_SS";
|
||||
regulator-min-microvolt = <5000000>;
|
||||
regulator-max-microvolt = <5000000>;
|
||||
regulator-boot-on;
|
||||
gpio = <&gpio TEGRA_GPIO(N, 5) GPIO_ACTIVE_HIGH>;
|
||||
enable-active-high;
|
||||
gpio-open-drain;
|
||||
|
@ -3815,7 +3815,7 @@
|
||||
compatible = "nvidia,tegra234-sce-fabric";
|
||||
reg = <0x0 0xb600000 0x0 0x40000>;
|
||||
interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>;
|
||||
status = "okay";
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
rce-fabric@be00000 {
|
||||
@ -3900,7 +3900,7 @@
|
||||
assigned-clock-parents = <&bpmp TEGRA234_CLK_PLLP_OUT0>;
|
||||
resets = <&bpmp TEGRA234_RESET_SPI2>;
|
||||
reset-names = "spi";
|
||||
dmas = <&gpcdma 19>, <&gpcdma 19>;
|
||||
dmas = <&gpcdma 16>, <&gpcdma 16>;
|
||||
dma-names = "rx", "tx";
|
||||
dma-coherent;
|
||||
status = "disabled";
|
||||
@ -3995,7 +3995,7 @@
|
||||
};
|
||||
|
||||
dce-fabric@de00000 {
|
||||
compatible = "nvidia,tegra234-sce-fabric";
|
||||
compatible = "nvidia,tegra234-dce-fabric";
|
||||
reg = <0x0 0xde00000 0x0 0x40000>;
|
||||
interrupts = <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>;
|
||||
status = "okay";
|
||||
@ -4018,6 +4018,8 @@
|
||||
#redistributor-regions = <1>;
|
||||
#interrupt-cells = <3>;
|
||||
interrupt-controller;
|
||||
|
||||
#address-cells = <0>;
|
||||
};
|
||||
|
||||
smmu_iso: iommu@10000000 {
|
||||
|
@ -69,19 +69,12 @@ static int tegra_cbb_err_show(struct seq_file *file, void *data)
|
||||
}
|
||||
DEFINE_SHOW_ATTRIBUTE(tegra_cbb_err);
|
||||
|
||||
static int tegra_cbb_err_debugfs_init(struct tegra_cbb *cbb)
|
||||
static void tegra_cbb_err_debugfs_init(struct tegra_cbb *cbb)
|
||||
{
|
||||
static struct dentry *root;
|
||||
|
||||
if (!root) {
|
||||
if (!root)
|
||||
root = debugfs_create_file("tegra_cbb_err", 0444, NULL, cbb, &tegra_cbb_err_fops);
|
||||
if (IS_ERR_OR_NULL(root)) {
|
||||
pr_err("%s(): could not create debugfs node\n", __func__);
|
||||
return PTR_ERR(root);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void tegra_cbb_stall_enable(struct tegra_cbb *cbb)
|
||||
@ -148,13 +141,8 @@ int tegra_cbb_register(struct tegra_cbb *cbb)
|
||||
{
|
||||
int ret;
|
||||
|
||||
if (IS_ENABLED(CONFIG_DEBUG_FS)) {
|
||||
ret = tegra_cbb_err_debugfs_init(cbb);
|
||||
if (ret) {
|
||||
dev_err(cbb->dev, "failed to create debugfs\n");
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
if (IS_ENABLED(CONFIG_DEBUG_FS))
|
||||
tegra_cbb_err_debugfs_init(cbb);
|
||||
|
||||
/* register interrupt handler for errors due to different initiators */
|
||||
ret = cbb->ops->interrupt_enable(cbb);
|
||||
|
@ -277,7 +277,7 @@ static void tegra234_lookup_slave_timeout(struct seq_file *file, struct tegra234
|
||||
* which timed out.
|
||||
* a) Get block number from the index of set bit in
|
||||
* <FABRIC>_SN_AXI2APB_<>_BLOCK_TMO_STATUS_0 register.
|
||||
* b) Get address of register repective to block number i.e.
|
||||
* b) Get address of register respective to block number i.e.
|
||||
* <FABRIC>_SN_AXI2APB_<>_BLOCK<index-set-bit>_TMO_0.
|
||||
* c) Read the register in above step to get client_id which
|
||||
* timed out as per the set bits.
|
||||
|
@ -647,15 +647,20 @@ static const struct nvmem_cell_lookup tegra234_fuse_lookups[] = {
|
||||
};
|
||||
|
||||
static const struct nvmem_keepout tegra234_fuse_keepouts[] = {
|
||||
{ .start = 0x01c, .end = 0x0c8 },
|
||||
{ .start = 0x12c, .end = 0x184 },
|
||||
{ .start = 0x01c, .end = 0x064 },
|
||||
{ .start = 0x084, .end = 0x0a0 },
|
||||
{ .start = 0x0a4, .end = 0x0c8 },
|
||||
{ .start = 0x12c, .end = 0x164 },
|
||||
{ .start = 0x16c, .end = 0x184 },
|
||||
{ .start = 0x190, .end = 0x198 },
|
||||
{ .start = 0x1a0, .end = 0x204 },
|
||||
{ .start = 0x21c, .end = 0x250 },
|
||||
{ .start = 0x25c, .end = 0x2f0 },
|
||||
{ .start = 0x21c, .end = 0x2f0 },
|
||||
{ .start = 0x310, .end = 0x3d8 },
|
||||
{ .start = 0x400, .end = 0x4f0 },
|
||||
{ .start = 0x4f8, .end = 0x7e8 },
|
||||
{ .start = 0x400, .end = 0x420 },
|
||||
{ .start = 0x444, .end = 0x490 },
|
||||
{ .start = 0x4bc, .end = 0x4f0 },
|
||||
{ .start = 0x4f8, .end = 0x54c },
|
||||
{ .start = 0x57c, .end = 0x7e8 },
|
||||
{ .start = 0x8d0, .end = 0x8d8 },
|
||||
{ .start = 0xacc, .end = 0xf00 }
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user