drivers/net/dsa/sja1105/sja1105_tas.h

Source file repositories/reference/linux-study-clean/drivers/net/dsa/sja1105/sja1105_tas.h

File Facts

System
Linux kernel
Corpus path
drivers/net/dsa/sja1105/sja1105_tas.h
Extension
.h
Size
2351 bytes
Lines
105
Domain
Driver Families
Bucket
drivers/net
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

struct sja1105_gate_entry {
	struct list_head list;
	struct sja1105_rule *rule;
	s64 interval;
	u8 gate_state;
};

struct sja1105_gating_config {
	u64 cycle_time;
	s64 base_time;
	int num_entries;
	struct list_head entries;
};

struct sja1105_tas_data {
	struct tc_taprio_qopt_offload *offload[SJA1105_MAX_NUM_PORTS];
	struct sja1105_gating_config gating_cfg;
	enum sja1105_tas_state state;
	enum sja1105_ptp_op last_op;
	struct work_struct tas_work;
	s64 earliest_base_time;
	s64 oper_base_time;
	u64 max_cycle_time;
	bool enabled;
};

int sja1105_setup_tc_taprio(struct dsa_switch *ds, int port,
			    struct tc_taprio_qopt_offload *admin);

void sja1105_tas_setup(struct dsa_switch *ds);

void sja1105_tas_teardown(struct dsa_switch *ds);

void sja1105_tas_clockstep(struct dsa_switch *ds);

void sja1105_tas_adjfreq(struct dsa_switch *ds);

bool sja1105_gating_check_conflicts(struct sja1105_private *priv, int port,
				    struct netlink_ext_ack *extack);

int sja1105_init_scheduling(struct sja1105_private *priv);

#else

/* C doesn't allow empty structures, bah! */
struct sja1105_tas_data {
	u8 dummy;
};

static inline int sja1105_setup_tc_taprio(struct dsa_switch *ds, int port,
					  struct tc_taprio_qopt_offload *admin)
{
	return -EOPNOTSUPP;
}

static inline void sja1105_tas_setup(struct dsa_switch *ds) { }

static inline void sja1105_tas_teardown(struct dsa_switch *ds) { }

static inline void sja1105_tas_clockstep(struct dsa_switch *ds) { }

static inline void sja1105_tas_adjfreq(struct dsa_switch *ds) { }

static inline bool
sja1105_gating_check_conflicts(struct dsa_switch *ds, int port,
			       struct netlink_ext_ack *extack)
{
	return true;
}

static inline int sja1105_init_scheduling(struct sja1105_private *priv)
{
	return 0;
}

#endif /* IS_ENABLED(CONFIG_NET_DSA_SJA1105_TAS) */

#endif /* _SJA1105_TAS_H */

Annotation

Implementation Notes