Commit 0682dbbf authored by Jean-Claude BAU's avatar Jean-Claude BAU

Synchronize PPSi with HAL share memory

- Update the local definition of the HAL share memory
- Hide some structure specific to HAL like LPDC support
parent d42b46e5
...@@ -67,15 +67,6 @@ typedef struct { ...@@ -67,15 +67,6 @@ typedef struct {
int nextState; int nextState;
} halPortFsmState_t; } halPortFsmState_t;
typedef struct {
int isSupported; /* Set if Low Phase Drift Calibration is supported */
halPortFsmState_t txSetupStates;
halPortFsmState_t rxSetupStates;
void *txSetup;
void *rxSetup;
}halPortLPDC_t; /* data for Low phase drift calibration */
/* Internal port state structure */ /* Internal port state structure */
struct hal_port_state { struct hal_port_state {
int in_use; /* non-zero: allocated */ int in_use; /* non-zero: allocated */
...@@ -133,7 +124,7 @@ struct hal_port_state { ...@@ -133,7 +124,7 @@ struct hal_port_state {
int evt_linkUp; /* Set if link is up ( driver call */ int evt_linkUp; /* Set if link is up ( driver call */
/* Low phase drift calibration data */ /* Low phase drift calibration data */
halPortLPDC_t lpdc; void *lpdc;
/* Pll FSM */ /* Pll FSM */
halPortFsmState_t pllStates; halPortFsmState_t pllStates;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment