Marek Szyprowski | e6f66a9 | 2010-05-20 08:13:07 +0200 | [diff] [blame] | 1 | /* linux/arch/arm/mach-s5pv210/setup-sdhci.c |
| 2 | * |
| 3 | * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd. |
| 4 | * http://www.samsung.com/ |
| 5 | * |
| 6 | * S5PV210 - Helper functions for settign up SDHCI device(s) (HSMMC) |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
Marek Szyprowski | e6f66a9 | 2010-05-20 08:13:07 +0200 | [diff] [blame] | 13 | #include <linux/types.h> |
Marek Szyprowski | e6f66a9 | 2010-05-20 08:13:07 +0200 | [diff] [blame] | 14 | |
| 15 | /* clock sources for the mmc bus clock, order as for the ctrl2[5..4] */ |
| 16 | |
| 17 | char *s5pv210_hsmmc_clksrcs[4] = { |
| 18 | [0] = "hsmmc", /* HCLK */ |
Marek Szyprowski | 12c67fc | 2010-08-05 18:22:38 +0900 | [diff] [blame] | 19 | /* [1] = "hsmmc", - duplicate HCLK entry */ |
Marek Szyprowski | e6f66a9 | 2010-05-20 08:13:07 +0200 | [diff] [blame] | 20 | [2] = "sclk_mmc", /* mmc_bus */ |
Marek Szyprowski | 12c67fc | 2010-08-05 18:22:38 +0900 | [diff] [blame] | 21 | /* [3] = NULL, - reserved */ |
Marek Szyprowski | e6f66a9 | 2010-05-20 08:13:07 +0200 | [diff] [blame] | 22 | }; |