diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2013-07-10 15:21:13 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-08-25 00:10:18 -0400 |
commit | 6d6fd3674259d16b735c961743ff28870c46cedc (patch) | |
tree | b93ef646e4343d7ba4baad0ace663b562bbfb01f /include | |
parent | 967bcb77177cda1a426fdb2350e6ec61bcf5b5eb (diff) |
mmc: sh_mmcif: revision-specific CLK_CTRL2 handling
Some newer MMCIF IP revisions contain a CE_CLK_CTRL2 register, that has to
be set for proper operation. Support for this feature is added in a way to
preserve the current behaviour by default, i.e. when it is not enabled
in platform data. Patch is based on work by Nobuyuki HIRAI.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mmc/sh_mmcif.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mmc/sh_mmcif.h b/include/linux/mmc/sh_mmcif.h index 197ed91f6a0c..ccd8fb2cad52 100644 --- a/include/linux/mmc/sh_mmcif.h +++ b/include/linux/mmc/sh_mmcif.h | |||
@@ -37,6 +37,7 @@ struct sh_mmcif_plat_data { | |||
37 | unsigned int slave_id_rx; | 37 | unsigned int slave_id_rx; |
38 | bool use_cd_gpio : 1; | 38 | bool use_cd_gpio : 1; |
39 | bool ccs_unsupported : 1; | 39 | bool ccs_unsupported : 1; |
40 | bool clk_ctrl2_present : 1; | ||
40 | unsigned int cd_gpio; | 41 | unsigned int cd_gpio; |
41 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ | 42 | u8 sup_pclk; /* 1 :SH7757, 0: SH7724/SH7372 */ |
42 | unsigned long caps; | 43 | unsigned long caps; |
@@ -60,6 +61,7 @@ struct sh_mmcif_plat_data { | |||
60 | #define MMCIF_CE_INT_MASK 0x00000044 | 61 | #define MMCIF_CE_INT_MASK 0x00000044 |
61 | #define MMCIF_CE_HOST_STS1 0x00000048 | 62 | #define MMCIF_CE_HOST_STS1 0x00000048 |
62 | #define MMCIF_CE_HOST_STS2 0x0000004C | 63 | #define MMCIF_CE_HOST_STS2 0x0000004C |
64 | #define MMCIF_CE_CLK_CTRL2 0x00000070 | ||
63 | #define MMCIF_CE_VERSION 0x0000007C | 65 | #define MMCIF_CE_VERSION 0x0000007C |
64 | 66 | ||
65 | /* CE_BUF_ACC */ | 67 | /* CE_BUF_ACC */ |