pxa.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/pcmcia/pxa/pxa.h
  3.  *
  4.  * Author: George Davis
  5.  * Created: Jan 10, 2002
  6.  * Copyright: MontaVista Software Inc.
  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.  * Originally based upon linux/drivers/pcmcia/sa1100_generic.h
  13.  *
  14.  */
  15. /*======================================================================
  16.     Device driver for the PCMCIA control functionality of Intel
  17.     PXA250/210 microprocessors.
  18.     The contents of this file are subject to the Mozilla Public
  19.     License Version 1.1 (the "License"); you may not use this file
  20.     except in compliance with the License. You may obtain a copy of
  21.     the License at http://www.mozilla.org/MPL/
  22.     Software distributed under the License is distributed on an "AS
  23.     IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  24.     implied. See the License for the specific language governing
  25.     rights and limitations under the License.
  26.     The initial developer of the original code is John G. Dorsey
  27.     <john+@cs.cmu.edu>.  Portions created by John G. Dorsey are
  28.     Copyright (C) 1999 John G. Dorsey.  All Rights Reserved.
  29.     Alternatively, the contents of this file may be used under the
  30.     terms of the GNU Public License version 2 (the "GPL"), in which
  31.     case the provisions of the GPL are applicable instead of the
  32.     above.  If you wish to allow the use of your version of this file
  33.     only under the terms of the GPL and not to allow others to use
  34.     your version of this file under the MPL, indicate your decision
  35.     by deleting the provisions above and replace them with the notice
  36.     and other provisions required by the GPL.  If you do not delete
  37.     the provisions above, a recipient may use your version of this
  38.     file under either the MPL or the GPL.
  39.     
  40. ======================================================================*/
  41. #if !defined(_PCMCIA_PXA_H)
  42. # define _PCMCIA_PXA_H
  43. #include <pcmcia/cs_types.h>
  44. #include <pcmcia/ss.h>
  45. #include <pcmcia/bulkmem.h>
  46. #include <pcmcia/cistpl.h>
  47. #include "../cs_internal.h"
  48. #include <asm/arch/pcmcia.h>
  49. /* MECR: Expansion Memory Configuration Register
  50.  * (SA-1100 Developers Manual, p.10-13; SA-1110 Developers Manual, p.10-24)
  51.  *
  52.  * MECR layout is:  
  53.  *
  54.  *   FAST1 BSM1<4:0> BSA1<4:0> BSIO1<4:0> FAST0 BSM0<4:0> BSA0<4:0> BSIO0<4:0>
  55.  *
  56.  * (This layout is actually true only for the SA-1110; the FASTn bits are
  57.  * reserved on the SA-1100.)
  58.  */
  59. #define MCXX_SETUP_MASK     (0x7f)
  60. #define MCXX_ASST_MASK      (0x1f)
  61. #define MCXX_HOLD_MASK      (0x3f)
  62. #define MCXX_SETUP_SHIFT    (0)
  63. #define MCXX_ASST_SHIFT     (7)
  64. #define MCXX_HOLD_SHIFT     (14)
  65. #define MECR_SET(mecr, sock, shift, mask, bs) 
  66. ((mecr)=((mecr)&~(((mask)<<(shift))<<
  67.                   ((sock)==0?MECR_SOCKET_0_SHIFT:MECR_SOCKET_1_SHIFT)))|
  68.         (((bs)<<(shift))<<((sock)==0?MECR_SOCKET_0_SHIFT:MECR_SOCKET_1_SHIFT)))
  69. #define MECR_GET(mecr, sock, shift, mask) 
  70. ((((mecr)>>(((sock)==0)?MECR_SOCKET_0_SHIFT:MECR_SOCKET_1_SHIFT))>>
  71.  (shift))&(mask))
  72. #define MECR_BSIO_SET(mecr, sock, bs) 
  73. MECR_SET((mecr), (sock), MECR_BSIO_SHIFT, MECR_BS_MASK, (bs))
  74. #define MECR_BSIO_GET(mecr, sock) 
  75. MECR_GET((mecr), (sock), MECR_BSIO_SHIFT, MECR_BS_MASK)
  76. #define MECR_BSA_SET(mecr, sock, bs) 
  77. MECR_SET((mecr), (sock), MECR_BSA_SHIFT, MECR_BS_MASK, (bs))
  78. #define MECR_BSA_GET(mecr, sock) 
  79. MECR_GET((mecr), (sock), MECR_BSA_SHIFT, MECR_BS_MASK)
  80. #define MECR_BSM_SET(mecr, sock, bs) 
  81. MECR_SET((mecr), (sock), MECR_BSM_SHIFT, MECR_BS_MASK, (bs))
  82. #define MECR_BSM_GET(mecr, sock) 
  83. MECR_GET((mecr), (sock), MECR_BSM_SHIFT, MECR_BS_MASK)
  84. #define MECR_FAST_SET(mecr, sock, fast) 
  85. MECR_SET((mecr), (sock), MECR_FAST_SHIFT, MECR_FAST_MODE_MASK, (fast))
  86. #define MECR_FAST_GET(mecr, sock) 
  87. MECR_GET((mecr), (sock), MECR_FAST_SHIFT, MECR_FAST_MODE_MASK)
  88. /* This function implements the BS value calculation for setting the MECR
  89.  * using integer arithmetic:
  90.  */
  91. static inline unsigned int pxa_pcmcia_mecr_bs(unsigned int pcmcia_cycle_ns,
  92.  unsigned int cpu_clock_khz){
  93.   unsigned int t = ((pcmcia_cycle_ns * cpu_clock_khz) / 6) - 1000000;
  94.   return (t / 1000000) + (((t % 1000000) == 0) ? 0 : 1);
  95. }
  96. static inline u_int pxa_mcxx_hold(u_int pcmcia_cycle_ns,
  97.     u_int mem_clk_10khz){
  98.   u_int code = pcmcia_cycle_ns * mem_clk_10khz;
  99.   return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
  100. }
  101. static inline u_int pxa_mcxx_asst(u_int pcmcia_cycle_ns,
  102.     u_int mem_clk_10khz){
  103.   u_int code = pcmcia_cycle_ns * mem_clk_10khz;
  104.   return (code / 300000) + ((code % 300000) ? 1 : 0) - 1;
  105. }
  106. static inline u_int pxa_mcxx_setup(u_int pcmcia_cycle_ns,
  107.     u_int mem_clk_10khz){
  108.   u_int code = pcmcia_cycle_ns * mem_clk_10khz;
  109.   return (code / 100000) + ((code % 100000) ? 1 : 0) - 1;
  110. }
  111. /* This function returns the (approxmiate) command assertion period, in
  112.  * nanoseconds, for a given CPU clock frequency and MCXX_ASST value:
  113.  */
  114. static inline u_int pxa_pcmcia_cmd_time(u_int mem_clk_10khz,
  115.    u_int pcmcia_mcxx_asst){
  116.   return (300000 * (pcmcia_mcxx_asst + 1) / mem_clk_10khz);
  117. }
  118. /* SA-1100 PCMCIA Memory and I/O timing
  119.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  120.  * The SA-1110 Developer's Manual, section 10.2.5, says the following:
  121.  *
  122.  *  "To calculate the recommended BS_xx value for each address space:
  123.  *   divide the command width time (the greater of twIOWR and twIORD,
  124.  *   or the greater of twWE and twOE) by processor cycle time; divide
  125.  *   by 2; divide again by 3 (number of BCLK's per command assertion);
  126.  *   round up to the next whole number; and subtract 1."
  127.  *
  128.  * The PC Card Standard, Release 7, section 4.13.4, says that twIORD
  129.  * has a minimum value of 165ns. Section 4.13.5 says that twIOWR has
  130.  * a minimum value of 165ns, as well. Section 4.7.2 (describing
  131.  * common and attribute memory write timing) says that twWE has a
  132.  * minimum value of 150ns for a 250ns cycle time (for 5V operation;
  133.  * see section 4.7.4), or 300ns for a 600ns cycle time (for 3.3V
  134.  * operation, also section 4.7.4). Section 4.7.3 says that taOE
  135.  * has a maximum value of 150ns for a 300ns cycle time (for 5V
  136.  * operation), or 300ns for a 600ns cycle time (for 3.3V operation).
  137.  *
  138.  * When configuring memory maps, Card Services appears to adopt the policy
  139.  * that a memory access time of "0" means "use the default." The default
  140.  * PCMCIA I/O command width time is 165ns. The default PCMCIA 5V attribute
  141.  * and memory command width time is 150ns; the PCMCIA 3.3V attribute and
  142.  * memory command width time is 300ns.
  143.  */
  144. #define PXA_PCMCIA_IO_ACCESS      (165)
  145. #define PXA_PCMCIA_5V_MEM_ACCESS  (150)
  146. #define PXA_PCMCIA_3V_MEM_ACCESS  (300)
  147. /* The socket driver actually works nicely in interrupt-driven form,
  148.  * so the (relatively infrequent) polling is "just to be sure."
  149.  */
  150. #define PXA_PCMCIA_POLL_PERIOD    (2*HZ)
  151. /* This structure encapsulates per-socket state which we might need to
  152.  * use when responding to a Card Services query of some kind.
  153.  */
  154. struct pxa_pcmcia_socket {
  155.   socket_state_t        cs_state;
  156.   struct pcmcia_state   k_state;
  157.   unsigned int          irq;
  158.   void                  (*handler)(void *, unsigned int);
  159.   void                  *handler_info;
  160.   pccard_io_map         io_map[MAX_IO_WIN];
  161.   pccard_mem_map        mem_map[MAX_WIN];
  162.   ioaddr_t              virt_io, phys_attr, phys_mem;
  163.   unsigned short        speed_io, speed_attr, speed_mem;
  164. };
  165. /* I/O pins replacing memory pins
  166.  * (PCMCIA System Architecture, 2nd ed., by Don Anderson, p.75)
  167.  *
  168.  * These signals change meaning when going from memory-only to 
  169.  * memory-or-I/O interface:
  170.  */
  171. #define iostschg bvd1
  172. #define iospkr   bvd2
  173. /*
  174.  * Declaration for all implementation specific low_level operations.
  175.  */
  176. extern struct pcmcia_low_level lubbock_pcmcia_ops;
  177. extern struct pcmcia_low_level pxa_idp_pcmcia_ops;
  178. extern struct pcmcia_low_level cerf_pcmcia_ops;
  179. #endif  /* !defined(_PCMCIA_PXA_H) */