diff options
author | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-03-26 03:29:18 +0100 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-03-26 03:53:21 +0100 |
commit | bea02e45874a5d18127b0779740c4fd5b3e7e44a (patch) | |
tree | 745687a257530605a9bfef107b37f8dfa8e7ca96 /drivers/video/via/via_clock.h | |
parent | viafb: add VIA slapping capability (diff) | |
download | linux-bea02e45874a5d18127b0779740c4fd5b3e7e44a.tar.xz linux-bea02e45874a5d18127b0779740c4fd5b3e7e44a.zip |
viafb: add engine clock support
This patch adds support for enabling and configuring the engine on
VIAs IGPs. This is the main clock used for everything but pixel
output.
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers/video/via/via_clock.h')
-rw-r--r-- | drivers/video/via/via_clock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/video/via/via_clock.h b/drivers/video/via/via_clock.h index f213a7a8fc79..88714ae0d157 100644 --- a/drivers/video/via/via_clock.h +++ b/drivers/video/via/via_clock.h @@ -53,6 +53,9 @@ struct via_clock { void (*set_secondary_clock_source)(enum via_clksrc src, bool use_pll); void (*set_secondary_pll_state)(u8 state); void (*set_secondary_pll)(struct via_pll_config config); + + void (*set_engine_pll_state)(u8 state); + void (*set_engine_pll)(struct via_pll_config config); }; |