FreeCalypso > hg > freecalypso-schem2
annotate venus/src/core/rf_fem_block.v @ 57:3afd172b83e1
main audio channel implemented
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Wed, 01 Dec 2021 02:22:39 +0000 | 
| parents | 3ed0f7a9c489 | 
| children | 
| rev | line source | 
|---|---|
| 9 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 1 /* | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 2 * This module encapsulates the RF FEM (quadband M034F) along with the PNP | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 3 * transistors and R/C footprints to GND for the control lines, and the cap | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 4 * on the antenna output. | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 5 */ | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 6 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 module rf_fem_block (GND, VREG3, Ctrl_Tx_Low, Ctrl_Tx_High, Ctrl_Rx_850, | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 8 RX_LOW1, RX_LOW2, RX_DCS1, RX_DCS2, RX_PCS1, RX_PCS2, | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 TX_LOW, TX_HIGH, ANT); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 10 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 11 input GND, VREG3; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 12 input Ctrl_Tx_Low, Ctrl_Tx_High, Ctrl_Rx_850; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 13 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 14 output RX_LOW1, RX_LOW2, RX_DCS1, RX_DCS2, RX_PCS1, RX_PCS2; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 15 input TX_LOW, TX_HIGH; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 16 inout ANT; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 17 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 18 wire ANT_before_cap; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 19 wire V_TX_LOW, V_TX_HIGH, V_RX_850; | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 20 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 21 /* transform control signals through PNP transistors */ | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 22 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 23 transistor_slot PNP_FEM7 (.E(VREG3), .B(Ctrl_Tx_Low), .C(V_TX_LOW)); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 24 transistor_slot PNP_FEM8 (.E(VREG3), .B(Ctrl_Tx_High), .C(V_TX_HIGH)); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 25 transistor_slot PNP_FEM9 (.E(VREG3), .B(Ctrl_Rx_850), .C(V_RX_850)); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 26 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 27 /* instantiate the M034F */ | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 28 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 29 M034F M034F (.ANT(ANT_before_cap), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 30 .GND(GND), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 31 .RX_LOW1(RX_LOW1), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 32 .RX_LOW2(RX_LOW2), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 33 .RX_DCS1(RX_DCS1), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 34 .RX_DCS2(RX_DCS2), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 35 .RX_PCS1(RX_PCS1), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 36 .RX_PCS2(RX_PCS2), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 37 .TX_LOW(TX_LOW), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 38 .TX_HIGH(TX_HIGH), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 39 .V_TX_LOW(V_TX_LOW), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 40 .V_TX_HIGH(V_TX_HIGH), | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 41 .V_RX_850(V_RX_850) | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 42 ); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 43 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 44 capacitor C635 (ANT_before_cap, ANT); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 45 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 46 capacitor C645 (V_TX_LOW, GND); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 47 capacitor C644 (V_TX_HIGH, GND); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 48 capacitor C643 (V_RX_850, GND); | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 49 | 
| 
3ed0f7a9c489
Venus: first version of Verilog for the Calypso core
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 50 endmodule | 
