1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/*************************************************************************
xtal.h
Documentation for known existing crystals.
See the .cpp file for the crystal list
Usage:
When you're 100% sure there is a given crystal or resonator on a
PCB, use XTAL(frequency) to document so. That xtal object then
collates multiplies or divides done to the base frequency to
compute the final one.
If you recieve a XTAL object and want to turn it to a final
frequency, use value() to get an integer or dvalue() to get a
double.
If you recieve a XTAL object and want to check if the initial
crystal value is sane, use check(context message). It will
fatalerror if the value is not in the authorized value list. It
has a (small) cost, so don't do it in a hot path.
Remember that with PLLs it is perfectly normal to multiply
frequencies by a rational. For instance the 315-5746 in the Sega
Saturn generates two dotclocks at 57.27MHz and 53.69MHz as needed
from a single 13.32MHz crystal. Banks of oscillators connected to
a chip usually don't exist. So if you're doing a switch to select
a frequency between multiple XTAL() ones, you're probably doing it
wrong. If you're selecting multipliers on a single crystal otoh,
that's perfectly normal. I'm looking at you, VGA pixel clock
generators.
***************************************************************************/
#ifndef MAME_EMU_DRIVERS_XTAL_H
#define MAME_EMU_DRIVERS_XTAL_H
#pragma once
class XTAL {
public:
constexpr XTAL(double base_clock) : m_base_clock(base_clock), m_current_clock(base_clock) {}
constexpr double dvalue() const noexcept { return m_current_clock; }
constexpr u32 value() const noexcept { return u32(m_current_clock); }
constexpr double base() const noexcept { return m_base_clock; }
constexpr XTAL operator *(int mult) const noexcept { return XTAL(m_base_clock, m_current_clock * mult); }
constexpr XTAL operator *(unsigned int mult) const noexcept { return XTAL(m_base_clock, m_current_clock * mult); }
constexpr XTAL operator *(double mult) const noexcept { return XTAL(m_base_clock, m_current_clock * mult); }
constexpr XTAL operator /(int div) const noexcept { return XTAL(m_base_clock, m_current_clock / div); }
constexpr XTAL operator /(unsigned int div) const noexcept { return XTAL(m_base_clock, m_current_clock / div); }
constexpr XTAL operator /(double div) const noexcept { return XTAL(m_base_clock, m_current_clock / div); }
friend constexpr XTAL operator /(int div, const XTAL &xtal);
friend constexpr XTAL operator /(unsigned int div, const XTAL &xtal);
friend constexpr XTAL operator /(double div, const XTAL &xtal);
friend constexpr XTAL operator *(int mult, const XTAL &xtal);
friend constexpr XTAL operator *(unsigned int mult, const XTAL &xtal);
friend constexpr XTAL operator *(double mult, const XTAL &xtal);
void check(const char *message) const;
void check(const std::string &message) const;
private:
double m_base_clock, m_current_clock;
constexpr XTAL(double base_clock, double current_clock) noexcept : m_base_clock(base_clock), m_current_clock(current_clock) {}
static const double known_xtals[];
static double last_correct_value, xtal_error_low, xtal_error_high;
static void fail(double base_clock, std::string message);
static bool check(double base_clock);
static void check_ordering();
};
constexpr XTAL operator /(int div, const XTAL &xtal) { return XTAL(xtal.base(), div / xtal.dvalue()); }
constexpr XTAL operator /(unsigned int div, const XTAL &xtal) { return XTAL(xtal.base(), div / xtal.dvalue()); }
constexpr XTAL operator /(double div, const XTAL &xtal) { return XTAL(xtal.base(), div / xtal.dvalue()); }
constexpr XTAL operator *(int mult, const XTAL &xtal) { return XTAL(xtal.base(), mult * xtal.dvalue()); }
constexpr XTAL operator *(unsigned int mult, const XTAL &xtal) { return XTAL(xtal.base(), mult * xtal.dvalue()); }
constexpr XTAL operator *(double mult, const XTAL &xtal) { return XTAL(xtal.base(), mult * xtal.dvalue()); }
#endif // MAME_EMU_DRIVERS_XTAL_H
|