/* OsmocomBB Layer1 initialization */ /* (C) 2010 by Harald Welte * * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include #include #include #include #include #include #include #include #include #include #include #include void layer1_init(void) { #ifndef CONFIG_TX_ENABLE printf("\n\nTHIS FIRMWARE WAS COMPILED WITHOUT TX SUPPORT!!!\n\n"); #endif /* initialize asynchronous part of L1 */ l1a_init(); /* initialize TDMA Frame IRQ driven synchronous L1 */ l1s_init(); /* power up the DSP */ dsp_power_on(); /* Initialize TPU, TSP and TRF drivers */ tpu_init(); tsp_init(); rffe_init(); #if 0 /* only if RX TPU window is disabled! */ /* Put TWL3025 in downlink mode (includes calibration) */ twl3025_downlink(1, 1000); #endif /* issue the TRF and TWL initialization sequence */ tpu_enq_sleep(); tpu_enable(1); tpu_wait_idle(); /* Disable RTC interrupt as it causes lost TDMA frames */ irq_disable(IRQ_RTC_TIMER); /* inform l2 and upwards that we are ready for orders */ l1ctl_tx_reset(L1CTL_RESET_IND, L1CTL_RES_T_BOOT); }