forked from PAWPAW-Mirror/lib_xua
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
// Copyright 2011-2024 XMOS LIMITED.
|
|
// This Software is subject to the terms of the XMOS Public Licence: Version 1.
|
|
|
|
#ifndef _CLOCKING_H_
|
|
#define _CLOCKING_H_
|
|
|
|
#include <xs1.h>
|
|
|
|
#include "sw_pll_wrapper.h"
|
|
|
|
interface pll_ref_if
|
|
{
|
|
void toggle();
|
|
void init();
|
|
void toggle_timed(int relative);
|
|
};
|
|
|
|
[[distributable]]
|
|
void PllRefPinTask(server interface pll_ref_if i_pll_ref, out port p_sync);
|
|
|
|
/** Clock generation and digital audio I/O handling.
|
|
*
|
|
* \param c_spdif_rx channel connected to S/PDIF receive thread
|
|
* \param c_adat_rx channel connect to ADAT receive thread
|
|
* \param i_pll_ref interface to taslk that outputs clock signal to drive external frequency synthesizer
|
|
* \param c_audio channel connected to the audio() thread
|
|
* \param c_clk_ctl channel connected to Endpoint0() for configuration of the
|
|
* clock
|
|
* \param c_clk_int channel connected to the decouple() thread for clock
|
|
* interrupts
|
|
* \param c_audio_rate_change channel to notify of master clock change
|
|
* \param p_for_mclk_count_aud port used for counting mclk and providing a timestamp
|
|
* \param c_sw_pll channel used to communicate with software PLL task
|
|
*
|
|
*/
|
|
void clockGen( streaming chanend ?c_spdif_rx,
|
|
chanend ?c_adat_rx,
|
|
client interface pll_ref_if i_pll_ref,
|
|
chanend c_audio,
|
|
chanend c_clk_ctl,
|
|
chanend c_clk_int,
|
|
chanend c_audio_rate_change
|
|
#if XUA_USE_SW_PLL
|
|
, port p_for_mclk_count_aud
|
|
, chanend c_sw_pll
|
|
#endif
|
|
);
|
|
|
|
#endif
|
|
|