blob: 96cdd06adc8caf32b0ce4d36b6cc17a7ca8955f5 [file] [log] [blame]
Stefan Reinauer52db0b92012-12-07 17:15:04 -08001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * See file CREDITS for list of people who contributed to this
4 * project.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Stefan Reinauer52db0b92012-12-07 17:15:04 -080019 */
20
21/* Standard clock speeds */
22
23/*
24 * We define some commonly-used clock speeds to avoid error since long
25 * numbers are hard to read.
26 *
27 * The format of the label is
28 * CLK_x_yU where:
29 * x is the integer speed
30 * y is the fractional part which can be omitted if 0
31 * U is the units (blank for Hz, K or M for KHz and MHz)
32 *
33 * Please order the items by increasing Hz
34 */
35enum {
36 CLK_32768 = 32768,
37 CLK_20M = 20000000,
38 CLK_24M = 24000000,
39 CLK_144M = 144000000,
40 CLK_216M = 216000000,
41 CLK_300M = 300000000,
42};