Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-29 Thread fixeria
fixeria has submitted this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..

trxcon: implement Ready-to-Send PHYIF API

This API is going to be used by osmo-trx-ms for pulling Uplink bursts
from the scheduler in a synchronous way, without relying on the
timer driven libtrxcon's internal scheduler.

Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Related: OS#5599
---
M src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
M src/host/trxcon/src/trxcon_shim.c
2 files changed, 21 insertions(+), 1 deletion(-)

Approvals:
  fixeria: Looks good to me, approved
  pespin: Looks good to me, but someone else must approve
  Hoernchen: Looks good to me, but someone else must approve
  Jenkins Builder: Verified



diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h 
b/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
index a2bc9ce..ac23ac6 100644
--- a/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
+++ b/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
@@ -69,6 +69,12 @@
} param;
 };

+/* RTS.ind - Ready-to-Send indication */
+struct trxcon_phyif_rts_ind {
+   uint32_t fn;
+   uint8_t tn;
+};
+
 /* BURST.req - a burst to be transmitted */
 struct trxcon_phyif_burst_req {
uint32_t fn;
@@ -88,11 +94,12 @@
unsigned int burst_len;
 };

-
 int trxcon_phyif_handle_burst_req(void *phyif, const struct 
trxcon_phyif_burst_req *br);
 int trxcon_phyif_handle_burst_ind(void *priv, const struct 
trxcon_phyif_burst_ind *bi);
 int trxcon_phyif_handle_clock_ind(void *priv, uint32_t fn);

+int trxcon_phyif_handle_rts_ind(void *priv, const struct trxcon_phyif_rts_ind 
*rts);
+
 int trxcon_phyif_handle_cmd(void *phyif, const struct trxcon_phyif_cmd *cmd);
 int trxcon_phyif_handle_rsp(void *priv, const struct trxcon_phyif_rsp *rsp);
 void trxcon_phyif_close(void *phyif);
diff --git a/src/host/trxcon/src/trxcon_shim.c 
b/src/host/trxcon/src/trxcon_shim.c
index ee51036..9da3cb7 100644
--- a/src/host/trxcon/src/trxcon_shim.c
+++ b/src/host/trxcon/src/trxcon_shim.c
@@ -220,6 +220,19 @@
 }
 
 /* External L1 API for the PHYIF */
+int trxcon_phyif_handle_rts_ind(void *priv, const struct trxcon_phyif_rts_ind 
*rts)
+{
+   struct trxcon_inst *trxcon = priv;
+   struct l1sched_burst_req br = {
+   .fn = rts->fn,
+   .tn = rts->tn,
+   .burst_len = 0, /* NOPE.ind */
+   };
+
+   l1sched_pull_burst(trxcon->sched, );
+   return l1sched_handle_burst_req(trxcon->sched, );
+}
+
 int trxcon_phyif_handle_burst_ind(void *priv, const struct 
trxcon_phyif_burst_ind *phybi)
 {
struct trxcon_inst *trxcon = priv;

--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 8
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Reviewer: pespin 
Gerrit-MessageType: merged


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-29 Thread fixeria
Attention is currently required from: Hoernchen, laforge, msuraev.
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 7:

(1 comment)

File src/host/trxcon/include/osmocom/bb/trxcon/phyif.h:

https://gerrit.osmocom.org/c/osmocom-bb/+/30241/comment/e6dc_22c49c0c
PS4, Line 101: trxcon_phyif_handle_rts_ind
> @Hoernchen: would it be more useful for you if I added a 'struct 
> trxcon_phyif_burst_req *br' argumen […]
No feedback on this, assuming it's not needed.



--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 7
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Reviewer: pespin 
Gerrit-Attention: Hoernchen 
Gerrit-Attention: laforge 
Gerrit-Attention: msuraev 
Gerrit-Comment-Date: Tue, 29 Nov 2022 11:02:44 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: fixeria 
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-29 Thread fixeria
Attention is currently required from: Hoernchen, laforge, msuraev.
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 7: Code-Review+2


--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 7
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria 
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Reviewer: pespin 
Gerrit-Attention: Hoernchen 
Gerrit-Attention: laforge 
Gerrit-Attention: msuraev 
Gerrit-Comment-Date: Tue, 29 Nov 2022 11:02:06 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-29 Thread pespin
Attention is currently required from: Hoernchen, laforge, fixeria, msuraev.
pespin has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 7: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 7
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Reviewer: pespin 
Gerrit-Attention: Hoernchen 
Gerrit-Attention: laforge 
Gerrit-Attention: fixeria 
Gerrit-Attention: msuraev 
Gerrit-Comment-Date: Tue, 29 Nov 2022 09:25:59 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-28 Thread fixeria
Attention is currently required from: Hoernchen, laforge, msuraev.
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 7:

This change is ready for review.


--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 7
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Attention: Hoernchen 
Gerrit-Attention: laforge 
Gerrit-Attention: msuraev 
Gerrit-Comment-Date: Mon, 28 Nov 2022 20:09:56 +
Gerrit-HasComments: No
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-21 Thread fixeria
Attention is currently required from: Hoernchen.
fixeria has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 4:

(1 comment)

File src/host/trxcon/include/osmocom/bb/trxcon/phyif.h:

https://gerrit.osmocom.org/c/osmocom-bb/+/30241/comment/a99e8faa_be532e05
PS4, Line 101: trxcon_phyif_handle_rts_ind
@Hoernchen: would it be more useful for you if I added a 'struct 
trxcon_phyif_burst_req *br' argument to this function, so that you could get 
the burst (or NOPE.req) in place?



--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 4
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Hoernchen 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Attention: Hoernchen 
Gerrit-Comment-Date: Mon, 21 Nov 2022 20:53:05 +
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-21 Thread fixeria
Attention is currently required from: fixeria.
Hello Jenkins Builder, laforge, msuraev,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmocom-bb/+/30241

to look at the new patch set (#4).

Change subject: trxcon: implement Ready-to-Send PHYIF API
..

trxcon: implement Ready-to-Send PHYIF API

This API is going to be used by osmo-trx-ms for pulling Uplink bursts
from the scheduler in a synchronous way, without relying on the
timer driven libtrxcon's internal scheduler.

Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Related: OS#5599
---
M src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
M src/host/trxcon/src/trxcon_shim.c
2 files changed, 21 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/41/30241/4
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 4
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Attention: fixeria 
Gerrit-MessageType: newpatchset


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-20 Thread msuraev
Attention is currently required from: fixeria.
msuraev has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 3: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Reviewer: msuraev 
Gerrit-Attention: fixeria 
Gerrit-Comment-Date: Sun, 20 Nov 2022 21:15:05 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-20 Thread laforge
Attention is currently required from: fixeria.
laforge has posted comments on this change. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )

Change subject: trxcon: implement Ready-to-Send PHYIF API
..


Patch Set 3: Code-Review+1


--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge 
Gerrit-Attention: fixeria 
Gerrit-Comment-Date: Sun, 20 Nov 2022 16:32:17 +
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-19 Thread fixeria
Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmocom-bb/+/30241

to look at the new patch set (#3).

Change subject: trxcon: implement Ready-to-Send PHYIF API
..

trxcon: implement Ready-to-Send PHYIF API

This API is going to be used by osmo-trx-ms for pulling Uplink bursts
from the scheduler in a synchronous way, without relying on the
timer driven libtrxcon's internal scheduler.

Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Related: OS#5599
---
M src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
M src/host/trxcon/src/trxcon_shim.c
2 files changed, 21 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/41/30241/3
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 3
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-19 Thread fixeria
Hello Jenkins Builder,

I'd like you to reexamine a change. Please visit

https://gerrit.osmocom.org/c/osmocom-bb/+/30241

to look at the new patch set (#2).

Change subject: trxcon: implement Ready-to-Send PHYIF API
..

trxcon: implement Ready-to-Send PHYIF API

This API is going to be used by osmo-trx-ms for pulling Uplink bursts
from the scheduler in a synchronous way, without relaying on the
timer driven libtrxcon's internal scheduler.

Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Related: OS#5599
---
M src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
M src/host/trxcon/src/trxcon_shim.c
2 files changed, 21 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/41/30241/2
--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria 
Gerrit-Reviewer: Jenkins Builder
Gerrit-MessageType: newpatchset


Change in osmocom-bb[master]: trxcon: implement Ready-to-Send PHYIF API

2022-11-19 Thread fixeria
fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmocom-bb/+/30241 )


Change subject: trxcon: implement Ready-to-Send PHYIF API
..

trxcon: implement Ready-to-Send PHYIF API

This API is going to be used by osmo-trx-ms for pulling Uplink bursts
from the scheduler in a synchronous way, without relaying on the
timer driven libtrxcon's internal scheduler.

Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Related: OS#5599
---
M src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
M src/host/trxcon/src/trxcon_shim.c
2 files changed, 20 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/41/30241/1

diff --git a/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h 
b/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
index 43363cb..3cf5f5d 100644
--- a/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
+++ b/src/host/trxcon/include/osmocom/bb/trxcon/phyif.h
@@ -69,6 +69,12 @@
} param;
 };

+/* RTS.ind - Ready-to-Send indication */
+struct trxcon_phyif_rts_ind {
+   uint32_t fn;
+   uint8_t tn;
+};
+
 /* BURST.req - a burst to be transmitted */
 struct trxcon_phyif_burst_req {
uint32_t fn;
@@ -89,6 +95,7 @@
 };


+int trxcon_phyif_handle_rts_ind(void *priv, const struct trxcon_phyif_rts_ind 
*rts);
 int trxcon_phyif_handle_burst_ind(void *priv, const struct 
trxcon_phyif_burst_ind *bi);
 int trxcon_phyif_handle_burst_req(void *phyif, const struct 
trxcon_phyif_burst_req *br);
 int trxcon_phyif_handle_cmd(void *phyif, const struct trxcon_phyif_cmd *cmd);
diff --git a/src/host/trxcon/src/trxcon_shim.c 
b/src/host/trxcon/src/trxcon_shim.c
index 6434461..2b5fc29 100644
--- a/src/host/trxcon/src/trxcon_shim.c
+++ b/src/host/trxcon/src/trxcon_shim.c
@@ -220,6 +220,19 @@
 }

 /* External L1 API for the PHYIF */
+int trxcon_phyif_handle_rts_ind(void *priv, const struct trxcon_phyif_rts_ind 
*rts)
+{
+   struct trxcon_inst *trxcon = priv;
+   struct l1sched_burst_req br = {
+   .fn = rts->fn,
+   .tn = rts->tn,
+   .burst_len = 0, /* NOPE.ind */
+   };
+
+   l1sched_trigger(trxcon->sched, );
+   return l1sched_handle_burst_req(trxcon->sched, );
+}
+
 int trxcon_phyif_handle_burst_ind(void *priv, const struct 
trxcon_phyif_burst_ind *bi)
 {
struct trxcon_inst *trxcon = priv;

--
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/30241
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: Ic8f74413f5fad277340e007dd4296f890155a2c1
Gerrit-Change-Number: 30241
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria 
Gerrit-MessageType: newchange