📄 auto_baud_with_tracking.v
字号:
//-----------------------------------------------------------------------------
// Auto Baud with tracking core
//
// This file is part of the "auto_baud" project.
// http://www.opencores.org/
//
//
// Description: See description below (which suffices for IP core
// specification document.)
//
// Copyright (C) 2002 John Clayton and OPENCORES.ORG
//
// This source file may be used and distributed without restriction provided
// that this copyright statement is not removed from the file and that any
// derivative work contains the original copyright notice and the associated
// disclaimer.
//
// This source file is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This source 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 Lesser General Public
// License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this source.
// If not, download it from http://www.opencores.org/lgpl.shtml
//
//-----------------------------------------------------------------------------
//
// Author: John Clayton
// Date : Aug. 20, 2002 Began project
// Update: Sep. 5, 2002 copied this file from "autobaud.v"
// Added tracking functions, and debugged them.
// Update: Sep. 13, 2002 Added test data. Module complete, it works well.
//
// Description
//-----------------------------------------------------------------------------
// This is a state-machine driven core that measures transition intervals
// in a particular character arriving via rs232 transmission (i.e. PC serial
// port.) Measurements of time intervals between transitions in the received
// character are then used to generate a baud rate clock for use in serial
// communications back and forth with the device that originally transmitted
// the measured character. The clock which is generated is in reality a
// clock enable pulse, one single clock wide, occurring at a rate suitable
// for use in serial communications. (This means that it will be generated
// at 4x or 8x or 16x the actual measured baud rate of the received character.
// The multiplication factor is called "CLOCK_FACTOR_PP" and is a settable
// parameter within this module. The parameter "CLOCK_FACTOR_PP" need not
// be a power of two, but it should be a number between 2 and 16 inclusive.)
//
// The particular character which is targeted for measurement and verification
// in this module is: carriage return (CR) = 0x0d = 13.
// This particular character was chosen because it is frequently used at the
// end of a command line, as entered at a keyboard by a human user interacting
// with a command interpreter. It is anticipated that the user would press
// the "enter" key once upon initializing communications with the electronic
// device, and the resulting carriage return character would be used for
// determining BAUD rate, thus allowing the device to respond at the correct
// rate, and to carry on further communications. The electronic device using
// this "auto_baud" module adjusts its baud rate to match the baud rate of
// the received data. This works for all baud rates, within certain limits,
// and for all system clock rates, within certain limits.
//
// Received serially, the carriage return appears as the following waveform:
// ________ __ ____ _______________
// |__|d0|__|d2d3|________|stop
// start d1 d4d5d6d7
//
// The waveform is shown with an identical "high" time and "low" time for
// each bit. However, actual measurements taken using a logic analyzer
// on characters received from a PC show that the times are not equal.
// The "high" times turned out shorter, and the "low" times longer...
// Therefore, this module attempts to average out this discrepancy by
// measuring one low time and one high time.
//
// Since the transition measurements must unavoidably contain small amounts
// of error, the measurements are made during the beginning 2 bits of
// the received character, (that is, start bit and data bit zero).
// Then the measurement is immediately transformed into a baud rate clock,
// used to verify correct reception of the remaining 8 bits of the character.
// If the entire character is not received correctly using the generated
// baud rate, then the measurement is scrapped, and the unit goes into an
// idle scanning mode waiting for another character to test.
//
// This effectively filters out characters that the unit is not interested in
// receiving (anything that is not a carriage return.) There is a slight
// possibility that a group of other characters could appear by random
// chance in a configuration that resembles a carriage return closely enough
// that the unit might accept the measurement and produce a baud clock too
// low. But the probability of this happening is remote enough that the
// unit is considered highly "robust" in normal use, especially when used
// for command entry by humans. It would take a very clever user indeed, to
// enter the correct series of characters with the correct intercharacter
// timing needed to possibly "fool" the unit!
//
// (Also, the baud rate produced falls within certain limits imposed by
// the hardware of the unit, which prevents the auto_baud unit from mistaking
// a series of short glitches on the serial data line for a really
// fast CR character.)
//
// This method of operation implies that each carriage return character
// received will produce a correctly generated baud rate clock. Therefore,
// each and every carriage return actually causes a new baud rate clock to
// be produced. However, updates occur smoothly, and there should be no
// apparent effect as an old BAUD clock is stopped and a new one started.
// The transition is done smoothly.
//
// For users who desire a single measurement at the beginning of a session
// to produce a steady baud clock during the entire session, there is a
// slightly smaller module called "auto_baud.v" which performs a single
// measurement, but which requires a reset pulse in order to begin measuring
// for a new BAUD rate.
//
// NOTES:
// - This module uses a counter to divide down the clk_i signal to produce the
// baud_clk_o signal. Since the frequency of baud_clk_o is nominally
// CLOCK_FACTOR_PP * rx_baud_rate, where "rx_baud_rate" is the baud rate
// of the received character, then the higher you make CLOCK_FACTOR_PP, the
// higher the generated baud_clk_o signal frequency, and hence the lower the
// resolution of the divider. Therefore, using a lower value for the
// CLOCK_FACTOR_PP will allow you to use a lower clk_i with this module.
// - To set LOG2_MAX_COUNT_PP, remember (max_count*CLOCK_FACTOR_PP)/Fclk_i
// is the maximum measurement time that can be accomodated by the circuit.
// (where Fclk_i is the frequency of clk_i, and 1/Fclk_i is the period.)
// Therefore, set LOG2_MAX_COUNT_PP so that the maximum measurement time
// is at least as long as 2x the baud interval of the slowest received
// serial data (2x because there are two bits involved in the measurement!)
// For example, for Fclk_i = 20MHz, CLOCK_FACTOR_PP = 4 and a minimum
// baud rate of 115,200, you would calculate:
//
// (max_count * CLOCK_FACTOR_PP)*1/Fclk_i >= 2/Fbaud_max
//
// Solving for the bit width of the max_count counter...
//
// LOG2_MAX_COUNT_PP >= ceil(log_base_2(max_count))
//
// >= ceil(log_base_2(2*Fclk_i/(Fbaud_max*CLOCK_FACTOR_PP)))
//
// >= ceil(log_base_2(2*20E6/(115200*4)))
//
// >= ceil(log_base_2(86.8))
//
// >= 7 bits.
//
// - In the above example, the maximum count would approach 87, which means
// that a measurement error of 1 count is about (1/87)=approx. 1.15%. This
// is an acceptable level of error for a baud rate clock. Notice that the
// lower baud rates have an even smaller error percentage (Yes!) but that
// they require a much larger measurement counter... For instance,
// to lock onto 300 baud using the same example above, would require:
//
// LOG2_MAX_COUNT_PP >= ceil(log_base_2(40000000/1200))
//
// >= ceil(log_base_2(33333.3))
//
// >= ceil(15.024678)
//
// >= 16 bits.
//
// - If the percentage error for your highest desired baud rate is greater
// than a few percent, you might want to use a higher Fclk_i or else a
// lower CLOCK_FACTOR_PP.
//
// - Using the default settings: CLK_FACTOR_PP = 8, LOG2_MAX_COUNT_PP = 16
// The following test results were obtained, using an actual session in
// hyperterm, looking for correct readable character transmission both
// directions. (Note: These tests were performed at "human interface"
// speeds. High speed or "back-to-back" character transmission might
// exhibit worse performance than these results.)
//
// Clk_i
// Freq.
// (MHz) 110 300 1200 2400 4800 9600 19200 57600 115200
// ------ ---------------------------------------------------------------
// 98 FAIL pass pass pass pass pass pass pass pass
// 55 FAIL pass pass pass pass pass pass pass pass
// 49 pass pass pass pass pass pass pass pass pass
// 24.5 pass pass pass pass pass pass pass pass FAIL
// 12 pass pass pass pass pass pass pass pass FAIL
// 6 pass pass pass pass pass pass pass FAIL FAIL
// 3 pass pass pass pass pass FAIL FAIL FAIL FAIL
// 1.5 pass pass pass pass FAIL FAIL FAIL FAIL FAIL
//
//
//-------------------------------------------------------------------------------------
`define LOG2_MAX_CLOCK_FACTOR 4 // Sets the size of the CLOCK_FACTOR
// prescaler.
`define BITS_PER_CHAR 8 // Include parity, if used, but not
// start and stop bits...
// Note: Simply changing the template bits does not reconfigure the
// module to look for a different character (because a new measurement
// window would have to be defined for a different character...)
// The template bits are the exact bits used during verify, against
// which the incoming character is checked.
// The LSB of the character is discarded, and the stop bit is appended
// since it is the last bit used during verify.
//
// so, for N:8:1 (no parity, 8 data bits, 1 stop bit) it is:
// = {1,(character>>1)} = 9'h086
// or, with parity included it is:
// = {1,parity_bit,(character>>1)} = 9'h106
//
`define TEMPLATE_BITS 9'h086 // Carriage return && termination flag
module auto_baud_with_tracking
(
clk_i,
reset_i,
serial_dat_i,
auto_baud_locked_o,
baud_clk_o
);
// Parameters
// CLOCK_FACTOR_PP can be from [2..16] inclusive.
parameter CLOCK_FACTOR_PP = 8; // Baud clock multiplier
parameter LOG2_MAX_COUNT_PP = 16; // Bit width of measurement counter
// State encodings, provided as parameters
// for flexibility to the one instantiating the module.
// In general, the default values need not be changed.
// There is one state machines: m1.
// "default" state upon power-up and configuration is:
// "m1_idle" because that is the all zero state.
parameter m1_idle = 4'h0; // Initial state (scanning)
parameter m1_measure_0 = 4'h1; // start bit (measuring)
parameter m1_measure_1 = 4'h2; // debounce (measuring)
parameter m1_measure_2 = 4'h3; // data bit 0 (measuring)
parameter m1_measure_3 = 4'h4; // debounce (measuring)
parameter m1_measure_4 = 4'h5; // measurement done (headed to verify)
parameter m1_verify_0 = 4'h8; // data bit 1 (verifying)
parameter m1_verify_1 = 4'h9; // data bit 2 (verifying)
parameter m1_run = 4'h6; // running
parameter m1_verify_failed = 4'h7; // resetting (headed back to idle)
// I/O declarations
input clk_i; // System clock input
input reset_i; // Reset signal for this module
input serial_dat_i; // TTL level serial data signal
output auto_baud_locked_o; // Indicates BAUD clock is being generated
output baud_clk_o; // BAUD clock output (actually a clock enable)
// Internal signal declarations
wire mid_bit_count; // During measurement, advances measurement counter
// (Using the mid bit time to advance the
// measurement timer accomplishes a timing "round"
// so that the timing measurement is as accurate
// as possible.)
// During verify, pulses at mid bit time are used
// to signal the state machine to check a data bit.
wire main_count_rollover; // Causes main_count to reset
wire baud_count_rollover; // Causes baud_count to reset
wire clock_count_rollover; // Causes clock_count to reset
// (when clock_count is used as a
// clock_factor prescaler)
wire enable_clock_count; // Logic that determines when clock_count
// should be counting
wire verify_done; // Indicates finish of verification time
reg idle; // Indicates state
reg measure; // Indicates state
reg clear_counters; // Pulses once when measurement is done.
reg verify; // Indicates state
reg verify_good; // Indicates successful verify (pulse)
reg character_miscompare; // Indicates character did not verify
reg run; // flip-flop that indicates a valid output
// is being generated.
reg [`LOG2_MAX_CLOCK_FACTOR-1:0] clock_count; // Clock_factor prescaler,
// and mid_bit counter.
reg [LOG2_MAX_COUNT_PP-1:0] main_count; // Main counter register
reg [LOG2_MAX_COUNT_PP-1:0] baud_count; // BAUD counter register
reg [LOG2_MAX_COUNT_PP-1:0] measurement; // measurement for verify
reg [LOG2_MAX_COUNT_PP-1:0] baud; // measurement for running
reg [`BITS_PER_CHAR:0] target_bits; // Character bits to compare
// (lsb is not needed, since it is used up during measurement time,
// but the stop bit and possible parity bit are needed.)
// For the state machine
reg [3:0] m1_state;
reg [3:0] m1_next_state;
//--------------------------------------------------------------------------
// Instantiations
//--------------------------------------------------------------------------
//--------------------------------------------------------------------------
// Module code
//--------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -