RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-avr32 / arch-at32ap / smc.h
blob07152b7fd9c94da03f2c3d2fa1af3c9d00464b8c
1 /*
2 * Static Memory Controller for AT32 chips
4 * Copyright (C) 2006 Atmel Corporation
6 * Inspired by the OMAP2 General-Purpose Memory Controller interface
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.
12 #ifndef __ARCH_AT32AP_SMC_H
13 #define __ARCH_AT32AP_SMC_H
16 * All timing parameters are in nanoseconds.
18 struct smc_config {
19 /* Delay from address valid to assertion of given strobe */
20 u16 ncs_read_setup;
21 u16 nrd_setup;
22 u16 ncs_write_setup;
23 u16 nwe_setup;
25 /* Pulse length of given strobe */
26 u16 ncs_read_pulse;
27 u16 nrd_pulse;
28 u16 ncs_write_pulse;
29 u16 nwe_pulse;
31 /* Total cycle length of given operation */
32 u16 read_cycle;
33 u16 write_cycle;
35 /* Bus width in bytes */
36 u8 bus_width;
39 * 0: Data is sampled on rising edge of NCS
40 * 1: Data is sampled on rising edge of NRD
42 unsigned int nrd_controlled:1;
45 * 0: Data is driven on falling edge of NCS
46 * 1: Data is driven on falling edge of NWR
48 unsigned int nwe_controlled:1;
51 * 0: NWAIT is disabled
52 * 1: Reserved
53 * 2: NWAIT is frozen mode
54 * 3: NWAIT in ready mode
56 unsigned int nwait_mode:2;
59 * 0: Byte select access type
60 * 1: Byte write access type
62 unsigned int byte_write:1;
65 * Number of clock cycles before data is released after
66 * the rising edge of the read controlling signal
68 * Total cycles from SMC is tdf_cycles + 1
70 unsigned int tdf_cycles:4;
73 * 0: TDF optimization disabled
74 * 1: TDF optimization enabled
76 unsigned int tdf_mode:1;
79 extern int smc_set_configuration(int cs, const struct smc_config *config);
80 extern struct smc_config *smc_get_configuration(int cs);
82 #endif /* __ARCH_AT32AP_SMC_H */