diff options
-rw-r--r-- | arch/arm/mach-davinci/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mach-davinci/aemif.c | 133 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/aemif.h | 36 | ||||
-rw-r--r-- | arch/arm/mach-davinci/include/mach/nand.h | 3 | ||||
-rw-r--r-- | drivers/mtd/nand/davinci_nand.c | 1 |
5 files changed, 171 insertions, 4 deletions
diff --git a/arch/arm/mach-davinci/Makefile b/arch/arm/mach-davinci/Makefile index eab4c0fd667a..77a0f71b2aa2 100644 --- a/arch/arm/mach-davinci/Makefile +++ b/arch/arm/mach-davinci/Makefile | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | # Common objects | 6 | # Common objects |
7 | obj-y := time.o clock.o serial.o io.o psc.o \ | 7 | obj-y := time.o clock.o serial.o io.o psc.o \ |
8 | gpio.o dma.o usb.o common.o sram.o | 8 | gpio.o dma.o usb.o common.o sram.o aemif.o |
9 | 9 | ||
10 | obj-$(CONFIG_DAVINCI_MUX) += mux.o | 10 | obj-$(CONFIG_DAVINCI_MUX) += mux.o |
11 | 11 | ||
diff --git a/arch/arm/mach-davinci/aemif.c b/arch/arm/mach-davinci/aemif.c new file mode 100644 index 000000000000..9c3f500fc12f --- /dev/null +++ b/arch/arm/mach-davinci/aemif.c | |||
@@ -0,0 +1,133 @@ | |||
1 | /* | ||
2 | * AEMIF support for DaVinci SoCs | ||
3 | * | ||
4 | * Copyright (C) 2010 Texas Instruments Incorporated. http://www.ti.com/ | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/io.h> | ||
13 | #include <linux/err.h> | ||
14 | #include <linux/clk.h> | ||
15 | #include <linux/module.h> | ||
16 | #include <linux/time.h> | ||
17 | |||
18 | #include <mach/aemif.h> | ||
19 | |||
20 | /* Timing value configuration */ | ||
21 | |||
22 | #define TA(x) ((x) << 2) | ||
23 | #define RHOLD(x) ((x) << 4) | ||
24 | #define RSTROBE(x) ((x) << 7) | ||
25 | #define RSETUP(x) ((x) << 13) | ||
26 | #define WHOLD(x) ((x) << 17) | ||
27 | #define WSTROBE(x) ((x) << 20) | ||
28 | #define WSETUP(x) ((x) << 26) | ||
29 | |||
30 | #define TA_MAX 0x3 | ||
31 | #define RHOLD_MAX 0x7 | ||
32 | #define RSTROBE_MAX 0x3f | ||
33 | #define RSETUP_MAX 0xf | ||
34 | #define WHOLD_MAX 0x7 | ||
35 | #define WSTROBE_MAX 0x3f | ||
36 | #define WSETUP_MAX 0xf | ||
37 | |||
38 | #define TIMING_MASK (TA(TA_MAX) | \ | ||
39 | RHOLD(RHOLD_MAX) | \ | ||
40 | RSTROBE(RSTROBE_MAX) | \ | ||
41 | RSETUP(RSETUP_MAX) | \ | ||
42 | WHOLD(WHOLD_MAX) | \ | ||
43 | WSTROBE(WSTROBE_MAX) | \ | ||
44 | WSETUP(WSETUP_MAX)) | ||
45 | |||
46 | /* | ||
47 | * aemif_calc_rate - calculate timing data. | ||
48 | * @wanted: The cycle time needed in nanoseconds. | ||
49 | * @clk: The input clock rate in kHz. | ||
50 | * @max: The maximum divider value that can be programmed. | ||
51 | * | ||
52 | * On success, returns the calculated timing value minus 1 for easy | ||
53 | * programming into AEMIF timing registers, else negative errno. | ||
54 | */ | ||
55 | static int aemif_calc_rate(int wanted, unsigned long clk, int max) | ||
56 | { | ||
57 | int result; | ||
58 | |||
59 | result = DIV_ROUND_UP((wanted * clk), NSEC_PER_MSEC) - 1; | ||
60 | |||
61 | pr_debug("%s: result %d from %ld, %d\n", __func__, result, clk, wanted); | ||
62 | |||
63 | /* It is generally OK to have a more relaxed timing than requested... */ | ||
64 | if (result < 0) | ||
65 | result = 0; | ||
66 | |||
67 | /* ... But configuring tighter timings is not an option. */ | ||
68 | else if (result > max) | ||
69 | result = -EINVAL; | ||
70 | |||
71 | return result; | ||
72 | } | ||
73 | |||
74 | /** | ||
75 | * davinci_aemif_setup_timing - setup timing values for a given AEMIF interface | ||
76 | * @t: timing values to be progammed | ||
77 | * @base: The virtual base address of the AEMIF interface | ||
78 | * @cs: chip-select to program the timing values for | ||
79 | * | ||
80 | * This function programs the given timing values (in real clock) into the | ||
81 | * AEMIF registers taking the AEMIF clock into account. | ||
82 | * | ||
83 | * This function does not use any locking while programming the AEMIF | ||
84 | * because it is expected that there is only one user of a given | ||
85 | * chip-select. | ||
86 | * | ||
87 | * Returns 0 on success, else negative errno. | ||
88 | */ | ||
89 | int davinci_aemif_setup_timing(struct davinci_aemif_timing *t, | ||
90 | void __iomem *base, unsigned cs) | ||
91 | { | ||
92 | unsigned set, val; | ||
93 | unsigned ta, rhold, rstrobe, rsetup, whold, wstrobe, wsetup; | ||
94 | unsigned offset = A1CR_OFFSET + cs * 4; | ||
95 | struct clk *aemif_clk; | ||
96 | unsigned long clkrate; | ||
97 | |||
98 | if (!t) | ||
99 | return 0; /* Nothing to do */ | ||
100 | |||
101 | aemif_clk = clk_get(NULL, "aemif"); | ||
102 | if (IS_ERR(aemif_clk)) | ||
103 | return PTR_ERR(aemif_clk); | ||
104 | |||
105 | clkrate = clk_get_rate(aemif_clk); | ||
106 | |||
107 | clkrate /= 1000; /* turn clock into kHz for ease of use */ | ||
108 | |||
109 | ta = aemif_calc_rate(t->ta, clkrate, TA_MAX); | ||
110 | rhold = aemif_calc_rate(t->rhold, clkrate, RHOLD_MAX); | ||
111 | rstrobe = aemif_calc_rate(t->rstrobe, clkrate, RSTROBE_MAX); | ||
112 | rsetup = aemif_calc_rate(t->rsetup, clkrate, RSETUP_MAX); | ||
113 | whold = aemif_calc_rate(t->whold, clkrate, WHOLD_MAX); | ||
114 | wstrobe = aemif_calc_rate(t->wstrobe, clkrate, WSTROBE_MAX); | ||
115 | wsetup = aemif_calc_rate(t->wsetup, clkrate, WSETUP_MAX); | ||
116 | |||
117 | if (ta < 0 || rhold < 0 || rstrobe < 0 || rsetup < 0 || | ||
118 | whold < 0 || wstrobe < 0 || wsetup < 0) { | ||
119 | pr_err("%s: cannot get suitable timings\n", __func__); | ||
120 | return -EINVAL; | ||
121 | } | ||
122 | |||
123 | set = TA(ta) | RHOLD(rhold) | RSTROBE(rstrobe) | RSETUP(rsetup) | | ||
124 | WHOLD(whold) | WSTROBE(wstrobe) | WSETUP(wsetup); | ||
125 | |||
126 | val = __raw_readl(base + offset); | ||
127 | val &= ~TIMING_MASK; | ||
128 | val |= set; | ||
129 | __raw_writel(val, base + offset); | ||
130 | |||
131 | return 0; | ||
132 | } | ||
133 | EXPORT_SYMBOL(davinci_aemif_setup_timing); | ||
diff --git a/arch/arm/mach-davinci/include/mach/aemif.h b/arch/arm/mach-davinci/include/mach/aemif.h new file mode 100644 index 000000000000..05b293443097 --- /dev/null +++ b/arch/arm/mach-davinci/include/mach/aemif.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * TI DaVinci AEMIF support | ||
3 | * | ||
4 | * Copyright 2010 (C) Texas Instruments, Inc. http://www.ti.com/ | ||
5 | * | ||
6 | * This file is licensed under the terms of the GNU General Public License | ||
7 | * version 2. This program is licensed "as is" without any warranty of any | ||
8 | * kind, whether express or implied. | ||
9 | */ | ||
10 | #ifndef _MACH_DAVINCI_AEMIF_H | ||
11 | #define _MACH_DAVINCI_AEMIF_H | ||
12 | |||
13 | #define NRCSR_OFFSET 0x00 | ||
14 | #define AWCCR_OFFSET 0x04 | ||
15 | #define A1CR_OFFSET 0x10 | ||
16 | |||
17 | #define ACR_ASIZE_MASK 0x3 | ||
18 | #define ACR_EW_MASK BIT(30) | ||
19 | #define ACR_SS_MASK BIT(31) | ||
20 | |||
21 | /* All timings in nanoseconds */ | ||
22 | struct davinci_aemif_timing { | ||
23 | u8 wsetup; | ||
24 | u8 wstrobe; | ||
25 | u8 whold; | ||
26 | |||
27 | u8 rsetup; | ||
28 | u8 rstrobe; | ||
29 | u8 rhold; | ||
30 | |||
31 | u8 ta; | ||
32 | }; | ||
33 | |||
34 | int davinci_aemif_setup_timing(struct davinci_aemif_timing *t, | ||
35 | void __iomem *base, unsigned cs); | ||
36 | #endif | ||
diff --git a/arch/arm/mach-davinci/include/mach/nand.h b/arch/arm/mach-davinci/include/mach/nand.h index b2ad8090bd10..b5893f035fea 100644 --- a/arch/arm/mach-davinci/include/mach/nand.h +++ b/arch/arm/mach-davinci/include/mach/nand.h | |||
@@ -30,9 +30,6 @@ | |||
30 | 30 | ||
31 | #include <linux/mtd/nand.h> | 31 | #include <linux/mtd/nand.h> |
32 | 32 | ||
33 | #define NRCSR_OFFSET 0x00 | ||
34 | #define AWCCR_OFFSET 0x04 | ||
35 | #define A1CR_OFFSET 0x10 | ||
36 | #define NANDFCR_OFFSET 0x60 | 33 | #define NANDFCR_OFFSET 0x60 |
37 | #define NANDFSR_OFFSET 0x64 | 34 | #define NANDFSR_OFFSET 0x64 |
38 | #define NANDF1ECC_OFFSET 0x70 | 35 | #define NANDF1ECC_OFFSET 0x70 |
diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c index 2ac7367afe77..8e2d56c36811 100644 --- a/drivers/mtd/nand/davinci_nand.c +++ b/drivers/mtd/nand/davinci_nand.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/slab.h> | 35 | #include <linux/slab.h> |
36 | 36 | ||
37 | #include <mach/nand.h> | 37 | #include <mach/nand.h> |
38 | #include <mach/aemif.h> | ||
38 | 39 | ||
39 | #include <asm/mach-types.h> | 40 | #include <asm/mach-types.h> |
40 | 41 | ||