| OLD | NEW |
| 1 /* | 1 /* |
| 2 * drivers/video/tegra/dc/hdmi.c | 2 * drivers/video/tegra/dc/hdmi.c |
| 3 * | 3 * |
| 4 * Copyright (C) 2010 Google, Inc. | 4 * Copyright (C) 2010 Google, Inc. |
| 5 * Author: Erik Gilling <konkers@android.com> | 5 * Author: Erik Gilling <konkers@android.com> |
| 6 * | 6 * |
| 7 * This software is licensed under the terms of the GNU General Public | 7 * This software is licensed under the terms of the GNU General Public |
| 8 * License version 2, as published by the Free Software Foundation, and | 8 * License version 2, as published by the Free Software Foundation, and |
| 9 * may be copied, distributed, and modified under those terms. | 9 * may be copied, distributed, and modified under those terms. |
| 10 * | 10 * |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 const struct tegra_hdmi_audio_config tegra_hdmi_audio_32k[] = { | 145 const struct tegra_hdmi_audio_config tegra_hdmi_audio_32k[] = { |
| 146 {25200000, 4096, 25250}, | 146 {25200000, 4096, 25250}, |
| 147 {27000000, 4096, 27000}, | 147 {27000000, 4096, 27000}, |
| 148 {54000000, 4096, 54000}, | 148 {54000000, 4096, 54000}, |
| 149 {74250000, 4096, 74250}, | 149 {74250000, 4096, 74250}, |
| 150 {148500000, 4096, 148500}, | 150 {148500000, 4096, 148500}, |
| 151 {0, 0, 0}, | 151 {0, 0, 0}, |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 const struct tegra_hdmi_audio_config tegra_hdmi_audio_44_1k[] = { | 154 const struct tegra_hdmi_audio_config tegra_hdmi_audio_44_1k[] = { |
| 155 » {25200000,» 14112,» 63125}, | 155 » {25200000,» 5656,» 25250}, |
| 156 {27000000, 6272, 30000}, | 156 {27000000, 6272, 30000}, |
| 157 {54000000, 6272, 60000}, | 157 {54000000, 6272, 60000}, |
| 158 {74250000, 6272, 82500}, | 158 {74250000, 6272, 82500}, |
| 159 {148500000, 6272, 165000}, | 159 {148500000, 6272, 165000}, |
| 160 {0, 0, 0}, | 160 {0, 0, 0}, |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 const struct tegra_hdmi_audio_config tegra_hdmi_audio_48k[] = { | 163 const struct tegra_hdmi_audio_config tegra_hdmi_audio_48k[] = { |
| 164 {25200000, 6144, 25250}, | 164 {25200000, 6144, 25250}, |
| 165 {27000000, 6144, 27000}, | 165 {27000000, 6144, 27000}, |
| (...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 struct tegra_dc_out_ops tegra_dc_hdmi_ops = { | 1100 struct tegra_dc_out_ops tegra_dc_hdmi_ops = { |
| 1101 .init = tegra_dc_hdmi_init, | 1101 .init = tegra_dc_hdmi_init, |
| 1102 .destroy = tegra_dc_hdmi_destroy, | 1102 .destroy = tegra_dc_hdmi_destroy, |
| 1103 .enable = tegra_dc_hdmi_enable, | 1103 .enable = tegra_dc_hdmi_enable, |
| 1104 .disable = tegra_dc_hdmi_disable, | 1104 .disable = tegra_dc_hdmi_disable, |
| 1105 .detect = tegra_dc_hdmi_detect, | 1105 .detect = tegra_dc_hdmi_detect, |
| 1106 .suspend = tegra_dc_hdmi_suspend, | 1106 .suspend = tegra_dc_hdmi_suspend, |
| 1107 .resume = tegra_dc_hdmi_resume, | 1107 .resume = tegra_dc_hdmi_resume, |
| 1108 }; | 1108 }; |
| 1109 | 1109 |
| OLD | NEW |