| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame^] | 1 | -- |
| 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 | |
| 14 | private package HW.GFX.GMA.PLLs.LCPLL |
| 15 | is |
| 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 | |
| 28 | end HW.GFX.GMA.PLLs.LCPLL; |