/* * Copyright (C) 2014 NVIDIA Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #ifndef __SOC_TEGRA_MC_H__ #define __SOC_TEGRA_MC_H__ #include struct clk; struct device; struct page; struct tegra_smmu_enable { unsigned int reg; unsigned int bit; }; struct tegra_mc_timing { unsigned long rate; u32 *emem_data; }; /* latency allowance */ struct tegra_mc_la { unsigned int reg; unsigned int shift; unsigned int mask; unsigned int def; }; struct tegra_mc_client { unsigned int id; const char *name; unsigned int swgroup; unsigned int fifo_size; struct tegra_smmu_enable smmu; struct tegra_mc_la la; }; struct tegra_smmu_swgroup { const char *name; unsigned int swgroup; unsigned int reg; }; struct tegra_smmu_soc { const struct tegra_mc_client *clients; unsigned int num_clients; const struct tegra_smmu_swgroup *swgroups; unsigned int num_swgroups; bool supports_round_robin_arbitration; bool supports_request_limit; unsigned int num_tlb_lines; unsigned int num_asids; }; struct tegra_mc; struct tegra_smmu; #ifdef CONFIG_TEGRA_IOMMU_SMMU struct tegra_smmu *tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc, struct tegra_mc *mc); void tegra_smmu_remove(struct tegra_smmu *smmu); #else static inline struct tegra_smmu * tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc, struct tegra_mc *mc) { return NULL; } static inline void tegra_smmu_remove(struct tegra_smmu *smmu) { } #endif struct tegra_mc_soc { const struct tegra_mc_client *clients; unsigned int num_clients; const unsigned long *emem_regs; unsigned int num_emem_regs; unsigned int num_address_bits; unsigned int atom_size; u8 client_id_mask; const struct tegra_smmu_soc *smmu; }; struct tegra_mc { struct device *dev; struct tegra_smmu *smmu; void __iomem *regs; struct clk *clk; int irq; const struct tegra_mc_soc *soc; unsigned long tick; struct tegra_mc_timing *timings; unsigned int num_timings; }; void tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate); unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc); #endif /* __SOC_TEGRA_MC_H__ */ ='id' value='e3bfc6e7baaac3992f62754228128427ac955e3a'/>
path: root/include
AgeCommit message (Expand)AuthorFilesLines
2017-02-10net/act_pedit: Introduce 'add' operationAmir Vadai2-0/+9
2017-02-10net/act_pedit: Support using offset relative to the conventional network headersAmir Vadai2-0/+28
2017-02-10net/skbuff: Introduce skb_mac_offset()Amir Vadai1-0/+5
2017-02-10switchdev: bridge: Offload mc router portsNogah Frankel1-0/+2
2017-02-10switchdev: bridge: Offload multicast disabledNogah Frankel1-0/+2
2017-02-10sched: move tcf_proto_destroy and tcf_destroy_chain helpers into cls_apiJiri Pirko2-2/+2
2017-02-10sched: rename tcf_destroy to tcf_destroy_protoJiri Pirko1-1/+1
2017-02-10ipv4: fib: Add events for FIB replace and appendIdo Schimmel1-1/+2
2017-02-09openvswitch: Add force commit.Jarno Rajahalme1-0/+5
2017-02-09openvswitch: Add original direction conntrack tuple to sw_flow_key.Jarno Rajahalme1-1/+19
2017-02-09openvswitch: Unionize ovs_key_ct_label with a u32 array.Jarno Rajahalme1-2/+6
2017-02-09sctp: implement sender-side procedures for Add Incoming/Outgoing Streams Requ...Xin Long2-0/+9
2017-02-09sctp: add support for generating stream reconf add incoming/outgoing streams ...Xin Long2-0/+10
2017-02-09sctp: implement sender-side procedures for SSN/TSN Reset Request ParameterXin Long2-0/+2
2017-02-09sctp: add support for generating stream reconf ssn/tsn reset request chunkXin Long2-0/+7
2017-02-09sctp: drop unnecessary __packed from some stream reconf structuresXin Long1-3/+3
2017-02-08ipv4: fib: Notify about nexthop status changesIdo Schimmel1-0/+7
2017-02-08net: stmmac: Remove the bus_setup function pointerLABBE Corentin1-1/+0
2017-02-08gro_cells: move to net/core/gro_cells.cEric Dumazet1-82/+4
2017-02-08net: phy: Add LED mode driver for Microsemi PHYs.Raju Lakkaraju