blob: 7fa45ba22f7d508491c24dd5430f175f629fdf3a [file] [log] [blame]
Nico Huber83693c82016-10-08 22:17:55 +02001--
2-- Copyright (C) 2015-2016 secunet Security Networks AG
3--
4-- This program is free software; you can redistribute it and/or modify
5-- it under the terms of the GNU General Public License as published by
6-- the Free Software Foundation; version 2 of the License.
7--
8-- This program is distributed in the hope that it will be useful,
9-- but WITHOUT ANY WARRANTY; without even the implied warranty of
10-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11-- GNU General Public License for more details.
12--
13
14private package HW.GFX.GMA.PLLs.LCPLL
15is
16
17 type Fixed_LCPLLs_Array is array (HW.GFX.DP_Bandwidth) of LCPLLs;
18
19 Fixed_LCPLLs : constant Fixed_LCPLLs_Array := Fixed_LCPLLs_Array'
20 (DP_Bandwidth_5_4 => LCPLL0,
21 DP_Bandwidth_2_7 => LCPLL1,
22 DP_Bandwidth_1_62 => LCPLL2);
23
24 type Value_Array is array (LCPLLs) of Word32;
25 Register_Value : constant Value_Array := Value_Array'
26 (LCPLL0 => 0 * 2 ** 29, LCPLL1 => 1 * 2 ** 29, LCPLL2 => 2 * 2 ** 29);
27
28end HW.GFX.GMA.PLLs.LCPLL;