Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Nov 2012 02:24:06 +0000 (UTC)
From:      Adrian Chadd <adrian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r243591 - head/sys/dev/ath
Message-ID:  <201211270224.qAR2O6gN047001@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: adrian
Date: Tue Nov 27 02:24:05 2012
New Revision: 243591
URL: http://svnweb.freebsd.org/changeset/base/243591

Log:
  Add in specific TDMA logging types.

Modified:
  head/sys/dev/ath/if_ath_alq.h

Modified: head/sys/dev/ath/if_ath_alq.h
==============================================================================
--- head/sys/dev/ath/if_ath_alq.h	Tue Nov 27 02:23:45 2012	(r243590)
+++ head/sys/dev/ath/if_ath_alq.h	Tue Nov 27 02:24:05 2012	(r243591)
@@ -43,6 +43,55 @@ struct if_ath_alq_init_state {
 #define	ATH_ALQ_EDMA_RXSTATUS		3
 #define	ATH_ALQ_EDMA_TXDESC		4
 
+#define	ATH_ALQ_TDMA_BEACON_STATE	5
+struct if_ath_alq_tdma_beacon_state {
+	uint64_t	rx_tsf;		/* RX TSF of beacon frame */
+	uint64_t	beacon_tsf;	/* TSF inside beacon frame */
+	uint64_t	tsf64;
+	uint64_t	nextslot_tsf;
+	uint32_t	nextslot_tu;
+	uint32_t	txtime;
+};
+
+#define	ATH_ALQ_TDMA_TIMER_CONFIG	6
+struct if_ath_alq_tdma_timer_config {
+	uint32_t	tdma_slot;
+	uint32_t	tdma_slotlen;
+	uint32_t	tdma_slotcnt;
+	uint32_t	tdma_bintval;
+	uint32_t	tdma_guard;
+	uint32_t	tdma_scbintval;
+	uint32_t	tdma_dbaprep;
+};
+
+#define	ATH_ALQ_TDMA_SLOT_CALC		7
+struct if_ath_alq_tdma_slot_calc {
+	uint64_t	nexttbtt;
+	uint64_t	next_slot;
+	int32_t		tsfdelta;
+	int32_t		avg_plus;
+	int32_t		avg_minus;
+};
+
+#define	ATH_ALQ_TDMA_TSF_ADJUST		8
+struct if_ath_alq_tdma_tsf_adjust {
+	uint64_t	tsf64_old;
+	uint64_t	tsf64_new;
+	int32_t		tsfdelta;
+};
+
+#define	ATH_ALQ_TDMA_TIMER_SET		9
+struct if_ath_alq_tdma_timer_set {
+	uint32_t	bt_intval;
+	uint32_t	bt_nexttbtt;
+	uint32_t	bt_nextdba;
+	uint32_t	bt_nextswba;
+	uint32_t	bt_nextatim;
+	uint32_t	bt_flags;
+	uint32_t	sc_tdmadbaprep;
+	uint32_t	sc_tdmaswbaprep;
+};
+
 /*
  * These will always be logged, regardless.
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211270224.qAR2O6gN047001>