diff options
author | Sandor Yu <R01008@freescale.com> | 2013-01-11 15:28:51 +0800 |
---|---|---|
committer | Liu Ying <Ying.liu@freescale.com> | 2013-01-21 13:59:52 +0800 |
commit | 3f1afd04552f6f90ee443e517b39f1a69b0f290b (patch) | |
tree | 1678d9750953310336850b798d39f9034f957904 /include | |
parent | 5528e415659a60f3c6d67db96692befb3302a58a (diff) |
ENGR00239734 Mx6 HDMI PHY: Add 2 variable to pass board specific config
The PHY register 0x9 and 0xe should setting
to different value in different board to pass HCT.
Add variable phy_reg_vlev and phy_reg_cksymtx to pass
phy config data.
Signed-off-by: Sandor Yu <R01008@freescale.com>
(cherry picked from commit 844aab72e7edcdced9f8e4e0d8e54eb4b0461cd9)
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fsl_devices.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index 78a50acf22a0..ac56f18c53a3 100644 --- a/include/linux/fsl_devices.h +++ b/include/linux/fsl_devices.h @@ -6,7 +6,7 @@ * * Maintainer: Kumar Gala <galak@kernel.crashing.org> * - * Copyright 2004-2012 Freescale Semiconductor, Inc. + * Copyright 2004-2013 Freescale Semiconductor, Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -284,6 +284,9 @@ struct fsl_mxc_hdmi_platform_data { void (*put_pins) (void); void (*enable_pins) (void); void (*disable_pins) (void); + /* HDMI PHY register config for pass HCT */ + u16 phy_reg_vlev; + u16 phy_reg_cksymtx; }; struct fsl_mxc_hdmi_core_platform_data { |