diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-01-26 16:06:00 -0500 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-01-27 16:01:31 -0500 |
commit | 5a4327f7784361933484895c9af751ccfa242d48 (patch) | |
tree | d08b3a796cd6049e3a940149a7791fdcb1d488fe /src/radeon.h | |
parent | cbd642af7c76469d701471daea0c8d167567ccf8 (diff) |
radeon: minor pll updates
add new fixed post divider option
Diffstat (limited to 'src/radeon.h')
-rw-r--r-- | src/radeon.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/radeon.h b/src/radeon.h index 10710a83..adc848d4 100644 --- a/src/radeon.h +++ b/src/radeon.h @@ -277,10 +277,12 @@ typedef struct { #define RADEON_PLL_PREFER_HIGH_POST_DIV (1 << 9) #define RADEON_PLL_USE_FRAC_FB_DIV (1 << 10) #define RADEON_PLL_PREFER_CLOSEST_LOWER (1 << 11) +#define RADEON_PLL_USE_POST_DIV (1 << 12) typedef struct { - uint16_t reference_freq; - uint16_t reference_div; + uint32_t reference_freq; + uint32_t reference_div; + uint32_t post_div; uint32_t pll_in_min; uint32_t pll_in_max; uint32_t pll_out_min; |