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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/pcmcia/pxa/pxa.c
  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.c
  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. #include <linux/module.h>
  42. #include <linux/init.h>
  43. #include <linux/config.h>
  44. #include <linux/cpufreq.h>
  45. #include <linux/delay.h>
  46. #include <linux/ioport.h>
  47. #include <linux/kernel.h>
  48. #include <linux/tqueue.h>
  49. #include <linux/timer.h>
  50. #include <linux/mm.h>
  51. #include <linux/notifier.h>
  52. #include <linux/proc_fs.h>
  53. #include <linux/version.h>
  54. #include <linux/cpufreq.h>
  55. #include <pcmcia/version.h>
  56. #include <pcmcia/cs_types.h>
  57. #include <pcmcia/cs.h>
  58. #include <pcmcia/ss.h>
  59. #include <pcmcia/bus_ops.h>
  60. #include <asm/hardware.h>
  61. #include <asm/io.h>
  62. #include <asm/irq.h>
  63. #include <asm/system.h>
  64. #include <asm/arch/lubbock.h>
  65. #include "pxa.h"
  66. #ifdef PCMCIA_DEBUG
  67. static int pc_debug;
  68. #endif
  69. MODULE_AUTHOR("George Davis <davis_g@mvista.com>");
  70. MODULE_DESCRIPTION("Linux PCMCIA Card Services: PXA250/210 Socket Controller");
  71. /* This structure maintains housekeeping state for each socket, such
  72.  * as the last known values of the card detect pins, or the Card Services
  73.  * callback value associated with the socket:
  74.  */
  75. static struct pxa_pcmcia_socket 
  76. pxa_pcmcia_socket[PXA_PCMCIA_MAX_SOCK];
  77. static int pxa_pcmcia_socket_count;
  78. /* Returned by the low-level PCMCIA interface: */
  79. static struct pcmcia_low_level *pcmcia_low_level;
  80. /* Event poll timer structure */
  81. static struct timer_list poll_timer;
  82. /* Prototypes for routines which are used internally: */
  83. static int  pxa_pcmcia_driver_init(void);
  84. static void pxa_pcmcia_driver_shutdown(void);
  85. static void pxa_pcmcia_task_handler(void *data);
  86. static void pxa_pcmcia_poll_event(unsigned long data);
  87. static void pxa_pcmcia_interrupt(int irq, void *dev,
  88.     struct pt_regs *regs);
  89. static struct tq_struct pxa_pcmcia_task;
  90. #ifdef CONFIG_PROC_FS
  91. static int  pxa_pcmcia_proc_status(char *buf, char **start, off_t pos,
  92.       int count, int *eof, void *data);
  93. #endif
  94. /* Prototypes for operations which are exported to the
  95.  * new-and-impr^H^H^H^H^H^H^H^H^H^H in-kernel PCMCIA core:
  96.  */
  97. static int pxa_pcmcia_init(unsigned int sock);
  98. static int pxa_pcmcia_suspend(unsigned int sock);
  99. static int pxa_pcmcia_register_callback(unsigned int sock,
  100.    void (*handler)(void *, 
  101.    unsigned int),
  102.    void *info);
  103. static int pxa_pcmcia_inquire_socket(unsigned int sock, 
  104. socket_cap_t *cap);
  105. static int pxa_pcmcia_get_status(unsigned int sock, u_int *value);
  106. static int pxa_pcmcia_get_socket(unsigned int sock, 
  107.     socket_state_t *state);
  108. static int pxa_pcmcia_set_socket(unsigned int sock,
  109.     socket_state_t *state);
  110. static int pxa_pcmcia_get_io_map(unsigned int sock,
  111.     struct pccard_io_map *io);
  112. static int pxa_pcmcia_set_io_map(unsigned int sock,
  113.     struct pccard_io_map *io);
  114. static int pxa_pcmcia_get_mem_map(unsigned int sock,
  115.      struct pccard_mem_map *mem);
  116. static int pxa_pcmcia_set_mem_map(unsigned int sock,
  117.      struct pccard_mem_map *mem);
  118. #ifdef CONFIG_PROC_FS
  119. static void pxa_pcmcia_proc_setup(unsigned int sock,
  120.      struct proc_dir_entry *base);
  121. #endif
  122. static struct pccard_operations pxa_pcmcia_operations = {
  123.   pxa_pcmcia_init,
  124.   pxa_pcmcia_suspend,
  125.   pxa_pcmcia_register_callback,
  126.   pxa_pcmcia_inquire_socket,
  127.   pxa_pcmcia_get_status,
  128.   pxa_pcmcia_get_socket,
  129.   pxa_pcmcia_set_socket,
  130.   pxa_pcmcia_get_io_map,
  131.   pxa_pcmcia_set_io_map,
  132.   pxa_pcmcia_get_mem_map,
  133.   pxa_pcmcia_set_mem_map,
  134. #ifdef CONFIG_PROC_FS
  135.   pxa_pcmcia_proc_setup
  136. #endif
  137. };
  138. #ifdef CONFIG_CPU_FREQ
  139. /* forward declaration */
  140. static struct notifier_block pxa_pcmcia_notifier_block;
  141. #endif
  142. /* pxa_pcmcia_driver_init()
  143.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  144.  *
  145.  * This routine performs a basic sanity check to ensure that this
  146.  * kernel has been built with the appropriate board-specific low-level
  147.  * PCMCIA support, performs low-level PCMCIA initialization, registers
  148.  * this socket driver with Card Services, and then spawns the daemon
  149.  * thread which is the real workhorse of the socket driver.
  150.  *
  151.  * Please see linux/Documentation/arm/SA1100/PCMCIA for more information
  152.  * on the low-level kernel interface.
  153.  *
  154.  * Returns: 0 on success, -1 on error
  155.  */
  156. static int __init pxa_pcmcia_driver_init(void){
  157.   servinfo_t info;
  158.   struct pcmcia_init pcmcia_init;
  159.   struct pcmcia_state state[PXA_PCMCIA_MAX_SOCK];
  160.   struct pcmcia_state_array state_array;
  161.   unsigned int i, clock;
  162.   unsigned long mecr;
  163.   printk(KERN_INFO "Intel PXA250/210 PCMCIA (CS release %s)n", CS_RELEASE);
  164.   CardServices(GetCardServicesInfo, &info);
  165.   if(info.Revision!=CS_RELEASE_CODE){
  166.     printk(KERN_ERR "Card Services release codes do not matchn");
  167.     return -1;
  168.   }
  169.   /* Setup GPIOs for PCMCIA/CF alternate function mode.
  170.    *
  171.    * It would be nice if set_GPIO_mode included support
  172.    * for driving GPIO outputs to default high/low state
  173.    * before programming GPIOs as outputs. Setting GPIO
  174.    * outputs to default high/low state via GPSR/GPCR
  175.    * before defining them as outputs should reduce
  176.    * the possibility of glitching outputs during GPIO
  177.    * setup. This of course assumes external terminators
  178.    * are present to hold GPIOs in a defined state.
  179.    *
  180.    * In the meantime, setup default state of GPIO
  181.    * outputs before we enable them as outputs.
  182.    */
  183.   GPSR(GPIO48_nPOE) = GPIO_bit(GPIO48_nPOE) |
  184.                       GPIO_bit(GPIO49_nPWE) |
  185.                       GPIO_bit(GPIO50_nPIOR) |
  186.                       GPIO_bit(GPIO51_nPIOW) |
  187.                       GPIO_bit(GPIO52_nPCE_1) |
  188.                       GPIO_bit(GPIO53_nPCE_2);
  189.   set_GPIO_mode(GPIO48_nPOE_MD);
  190.   set_GPIO_mode(GPIO49_nPWE_MD);
  191.   set_GPIO_mode(GPIO50_nPIOR_MD);
  192.   set_GPIO_mode(GPIO51_nPIOW_MD);
  193.   set_GPIO_mode(GPIO52_nPCE_1_MD);
  194.   set_GPIO_mode(GPIO53_nPCE_2_MD);
  195.   set_GPIO_mode(GPIO54_pSKTSEL_MD); /* REVISIT: s/b dependent on num sockets */
  196.   set_GPIO_mode(GPIO55_nPREG_MD);
  197.   set_GPIO_mode(GPIO56_nPWAIT_MD);
  198.   set_GPIO_mode(GPIO57_nIOIS16_MD);
  199.   if(machine_is_lubbock()){
  200. #ifdef CONFIG_ARCH_LUBBOCK
  201.     pcmcia_low_level=&lubbock_pcmcia_ops;
  202. #endif
  203.   } else if (machine_is_pxa_idp()) {
  204.     pcmcia_low_level=&pxa_idp_pcmcia_ops;
  205.   } else if( machine_is_pxa_cerf()){
  206.     pcmcia_low_level=&cerf_pcmcia_ops;
  207.   }
  208.   if (!pcmcia_low_level) {
  209.     printk(KERN_ERR "This hardware is not supported by the PXA250/210 Card Service drivern");
  210.     return -ENODEV;
  211.   }
  212.   pcmcia_init.handler=pxa_pcmcia_interrupt;
  213.   if((pxa_pcmcia_socket_count=pcmcia_low_level->init(&pcmcia_init))<0){
  214.     printk(KERN_ERR "Unable to initialize kernel PCMCIA service.n");
  215.     return -EIO;
  216.   }
  217.   state_array.size=pxa_pcmcia_socket_count;
  218.   state_array.state=state;
  219.   /* Configure MECR based on the number of sockets present. */
  220.   if (pxa_pcmcia_socket_count == 2) {
  221.     MECR |= GPIO_bit(0);
  222.   } else {
  223.     MECR &= ~GPIO_bit(0);
  224.   }
  225.   if(pcmcia_low_level->socket_state(&state_array)<0){
  226.     printk(KERN_ERR "Unable to get PCMCIA status from kernel.n");
  227.     return -EIO;
  228.   }
  229.   /* Well, it looks good to go. So we can now enable the PCMCIA
  230.    * controller.
  231.    */
  232.   MECR |= GPIO_bit(1);
  233.   /* We need to initialize the MCXX registers to default values
  234.    * here because we're not guaranteed to see a SetIOMap operation
  235.    * at runtime.
  236.    */
  237.   clock = get_lclk_frequency_10khz();
  238.   for(i=0; i<pxa_pcmcia_socket_count; ++i){
  239.     pxa_pcmcia_socket[i].k_state=state[i];
  240.     /* This is an interim fix. Apparently, SetSocket is no longer
  241.      * called to initialize each socket (prior to the first detect
  242.      * event). For now, we'll just manually set up the mask.
  243.      */
  244.     pxa_pcmcia_socket[i].cs_state.csc_mask=SS_DETECT;
  245.     pxa_pcmcia_socket[i].virt_io=(i==0)?PCMCIA_IO_0_BASE:PCMCIA_IO_1_BASE;
  246.     pxa_pcmcia_socket[i].phys_attr=_PCMCIAAttr(i);
  247.     pxa_pcmcia_socket[i].phys_mem=_PCMCIAMem(i);
  248.     /* REVISIT: cleanup these macros */
  249.     //MCIO_SET(i, PXA_PCMCIA_IO_ACCESS, clock);
  250.     //MCATTR_SET(i, PXA_PCMCIA_5V_MEM_ACCESS, clock);
  251.     //MCMEM_SET(i, PXA_PCMCIA_5V_MEM_ACCESS, clock);
  252.     pxa_pcmcia_socket[i].speed_io=PXA_PCMCIA_IO_ACCESS;
  253.     pxa_pcmcia_socket[i].speed_attr=PXA_PCMCIA_5V_MEM_ACCESS;
  254.     pxa_pcmcia_socket[i].speed_mem=PXA_PCMCIA_5V_MEM_ACCESS;
  255.   }
  256. /* REVISIT: cleanup these macros */
  257. MCMEM0 = ((pxa_mcxx_setup(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  258. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  259.        | ((pxa_mcxx_asst(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  260. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  261.        | ((pxa_mcxx_hold(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  262. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  263. MCMEM1 = ((pxa_mcxx_setup(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  264. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  265.        | ((pxa_mcxx_asst(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  266. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  267.        | ((pxa_mcxx_hold(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  268. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  269. MCATT0 = ((pxa_mcxx_setup(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  270. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  271.        | ((pxa_mcxx_asst(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  272. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  273.        | ((pxa_mcxx_hold(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  274. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  275. MCATT1 = ((pxa_mcxx_setup(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  276. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  277.        | ((pxa_mcxx_asst(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  278. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  279.        | ((pxa_mcxx_hold(PXA_PCMCIA_5V_MEM_ACCESS, clock)
  280. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  281. MCIO0 = ((pxa_mcxx_setup(PXA_PCMCIA_IO_ACCESS, clock)
  282. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  283.        | ((pxa_mcxx_asst(PXA_PCMCIA_IO_ACCESS, clock)
  284. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  285.        | ((pxa_mcxx_hold(PXA_PCMCIA_IO_ACCESS, clock)
  286. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  287. MCIO1 = ((pxa_mcxx_setup(PXA_PCMCIA_IO_ACCESS, clock)
  288. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  289.        | ((pxa_mcxx_asst(PXA_PCMCIA_IO_ACCESS, clock)
  290. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  291.        | ((pxa_mcxx_hold(PXA_PCMCIA_IO_ACCESS, clock)
  292. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  293. #ifdef CONFIG_CPU_FREQ
  294.   if(cpufreq_register_notifier(&pxa_pcmcia_notifier_block) < 0){
  295.     printk(KERN_ERR "Unable to register CPU frequency change notifiern");
  296.     return -ENXIO;
  297.   }
  298. #endif
  299.   /* Only advertise as many sockets as we can detect: */
  300.   if(register_ss_entry(pxa_pcmcia_socket_count, 
  301.        &pxa_pcmcia_operations)<0){
  302.     printk(KERN_ERR "Unable to register socket service routinen");
  303.     return -ENXIO;
  304.   }
  305.   /* Start the event poll timer.  It will reschedule by itself afterwards. */
  306.   pxa_pcmcia_poll_event(0);
  307.   DEBUG(1, "pxa_cs: initialization completen");
  308.   return 0;
  309. }  /* pxa_pcmcia_driver_init() */
  310. module_init(pxa_pcmcia_driver_init);
  311. /* pxa_pcmcia_driver_shutdown()
  312.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  313.  * Invokes the low-level kernel service to free IRQs associated with this
  314.  * socket controller and reset GPIO edge detection.
  315.  */
  316. static void __exit pxa_pcmcia_driver_shutdown(void){
  317.   del_timer_sync(&poll_timer);
  318.   unregister_ss_entry(&pxa_pcmcia_operations);
  319. #ifdef CONFIG_CPU_FREQ
  320.   cpufreq_unregister_notifier(&pxa_pcmcia_notifier_block);
  321. #endif
  322.   pcmcia_low_level->shutdown();
  323.   flush_scheduled_tasks();
  324.   DEBUG(1, "pxa_cs: shutdown completen");
  325. }
  326. module_exit(pxa_pcmcia_driver_shutdown);
  327. /* pxa_pcmcia_init()
  328.  * ^^^^^^^^^^^^^^^^^^^^
  329.  * We perform all of the interesting initialization tasks in 
  330.  * pxa_pcmcia_driver_init().
  331.  *
  332.  * Returns: 0
  333.  */
  334. static int pxa_pcmcia_init(unsigned int sock){
  335.   
  336.   DEBUG(2, "%s(): initializing socket %un", __FUNCTION__, sock);
  337.   return 0;
  338. }
  339. /* pxa_pcmcia_suspend()
  340.  * ^^^^^^^^^^^^^^^^^^^^^^^
  341.  * We don't currently perform any actions on a suspend.
  342.  *
  343.  * Returns: 0
  344.  */
  345. static int pxa_pcmcia_suspend(unsigned int sock)
  346. {
  347.   struct pcmcia_configure conf;
  348.   int ret;
  349.   DEBUG(2, "%s(): suspending socket %un", __FUNCTION__, sock);
  350.   conf.sock = sock;
  351.   conf.vcc = 0;
  352.   conf.vpp = 0;
  353.   conf.output = 0;
  354.   conf.speaker = 0;
  355.   conf.reset = 1;
  356.   ret = pcmcia_low_level->configure_socket(&conf);
  357.   if (ret == 0)
  358.     pxa_pcmcia_socket[sock].cs_state = dead_socket;
  359.   return ret;
  360. }
  361. /* pxa_pcmcia_events()
  362.  * ^^^^^^^^^^^^^^^^^^^^^^
  363.  * Helper routine to generate a Card Services event mask based on
  364.  * state information obtained from the kernel low-level PCMCIA layer
  365.  * in a recent (and previous) sampling. Updates `prev_state'.
  366.  *
  367.  * Returns: an event mask for the given socket state.
  368.  */
  369. static inline unsigned pxa_pcmcia_events(struct pcmcia_state *state,
  370.     struct pcmcia_state *prev_state,
  371.     unsigned int mask,
  372.     unsigned int flags){
  373.   unsigned int events=0;
  374.   if(state->detect!=prev_state->detect){
  375.     DEBUG(2, "%s(): card detect value %un", __FUNCTION__, state->detect);
  376.     events|=mask&SS_DETECT;
  377.   }
  378.   if(state->ready!=prev_state->ready){
  379.     DEBUG(2, "%s(): card ready value %un", __FUNCTION__, state->ready);
  380.     events|=mask&((flags&SS_IOCARD)?0:SS_READY);
  381.   }
  382.   if(state->bvd1!=prev_state->bvd1){
  383.     DEBUG(2, "%s(): card BVD1 value %un", __FUNCTION__, state->bvd1);
  384.     events|=mask&(flags&SS_IOCARD)?SS_STSCHG:SS_BATDEAD;
  385.   }
  386.   if(state->bvd2!=prev_state->bvd2){
  387.     DEBUG(2, "%s(): card BVD2 value %un", __FUNCTION__, state->bvd2);
  388.     events|=mask&(flags&SS_IOCARD)?0:SS_BATWARN;
  389.   }
  390.   DEBUG(2, "events: %s%s%s%s%s%sn",
  391. (events==0)?"<NONE>":"",
  392. (events&SS_DETECT)?"DETECT ":"",
  393. (events&SS_READY)?"READY ":"",
  394. (events&SS_BATDEAD)?"BATDEAD ":"",
  395. (events&SS_BATWARN)?"BATWARN ":"",
  396. (events&SS_STSCHG)?"STSCHG ":"");
  397.   *prev_state=*state;
  398.   return events;
  399. }  /* pxa_pcmcia_events() */
  400. /* pxa_pcmcia_task_handler()
  401.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  402.  * Processes serviceable socket events using the "eventd" thread context.
  403.  *
  404.  * Event processing (specifically, the invocation of the Card Services event
  405.  * callback) occurs in this thread rather than in the actual interrupt
  406.  * handler due to the use of scheduling operations in the PCMCIA core.
  407.  */
  408. static void pxa_pcmcia_task_handler(void *data) {
  409.   struct pcmcia_state state[PXA_PCMCIA_MAX_SOCK];
  410.   struct pcmcia_state_array state_array;
  411.   int i, events, all_events, irq_status;
  412.   DEBUG(2, "%s(): entering PCMCIA monitoring threadn", __FUNCTION__);
  413.   state_array.size=pxa_pcmcia_socket_count;
  414.   state_array.state=state;
  415.   do {
  416.     DEBUG(3, "%s(): interrogating low-level PCMCIA servicen", __FUNCTION__);
  417.     if((irq_status=pcmcia_low_level->socket_state(&state_array))<0)
  418.       printk(KERN_ERR "Error in kernel low-level PCMCIA service.n");
  419.     all_events=0;
  420.     if(irq_status>0){
  421.       for(i=0; i<state_array.size; ++i, all_events|=events)
  422. if((events=
  423.     pxa_pcmcia_events(&state[i],
  424.  &pxa_pcmcia_socket[i].k_state,
  425.  pxa_pcmcia_socket[i].cs_state.csc_mask,
  426.  pxa_pcmcia_socket[i].cs_state.flags)))
  427.   if(pxa_pcmcia_socket[i].handler!=NULL)
  428.     pxa_pcmcia_socket[i].handler(pxa_pcmcia_socket[i].handler_info,
  429.     events);
  430.     }
  431.   } while(all_events);
  432. }  /* pxa_pcmcia_task_handler() */
  433. static struct tq_struct pxa_pcmcia_task = {
  434. routine: pxa_pcmcia_task_handler
  435. };
  436. /* pxa_pcmcia_poll_event()
  437.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  438.  * Let's poll for events in addition to IRQs since IRQ only is unreliable...
  439.  */
  440. static void pxa_pcmcia_poll_event(unsigned long dummy)
  441. {
  442.   DEBUG(3, "%s(): polling for eventsn", __FUNCTION__);
  443.   poll_timer.function = pxa_pcmcia_poll_event;
  444.   poll_timer.expires = jiffies + PXA_PCMCIA_POLL_PERIOD;
  445.   add_timer(&poll_timer);
  446.   schedule_task(&pxa_pcmcia_task);
  447. }
  448. /* pxa_pcmcia_interrupt()
  449.  * ^^^^^^^^^^^^^^^^^^^^^^^^^
  450.  * Service routine for socket driver interrupts (requested by the
  451.  * low-level PCMCIA init() operation via pxa_pcmcia_thread()).
  452.  * The actual interrupt-servicing work is performed by
  453.  * pxa_pcmcia_thread(), largely because the Card Services event-
  454.  * handling code performs scheduling operations which cannot be
  455.  * executed from within an interrupt context.
  456.  */
  457. static void pxa_pcmcia_interrupt(int irq, void *dev, struct pt_regs *regs){
  458.   DEBUG(3, "%s(): servicing IRQ %dn", __FUNCTION__, irq);
  459.   schedule_task(&pxa_pcmcia_task);
  460. }
  461. /* pxa_pcmcia_register_callback()
  462.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  463.  * Implements the register_callback() operation for the in-kernel
  464.  * PCMCIA service (formerly SS_RegisterCallback in Card Services). If 
  465.  * the function pointer `handler' is not NULL, remember the callback 
  466.  * location in the state for `sock', and increment the usage counter 
  467.  * for the driver module. (The callback is invoked from the interrupt
  468.  * service routine, pxa_pcmcia_interrupt(), to notify Card Services
  469.  * of interesting events.) Otherwise, clear the callback pointer in the
  470.  * socket state and decrement the module usage count.
  471.  *
  472.  * Returns: 0
  473.  */
  474. static int pxa_pcmcia_register_callback(unsigned int sock,
  475.    void (*handler)(void *,
  476.    unsigned int),
  477.    void *info){
  478.   if(handler==NULL){
  479.     pxa_pcmcia_socket[sock].handler=NULL;
  480.     MOD_DEC_USE_COUNT;
  481.   } else {
  482.     MOD_INC_USE_COUNT;
  483.     pxa_pcmcia_socket[sock].handler=handler;
  484.     pxa_pcmcia_socket[sock].handler_info=info;
  485.   }
  486.   return 0;
  487. }
  488. /* pxa_pcmcia_inquire_socket()
  489.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  490.  * Implements the inquire_socket() operation for the in-kernel PCMCIA
  491.  * service (formerly SS_InquireSocket in Card Services). Of note is
  492.  * the setting of the SS_CAP_PAGE_REGS bit in the `features' field of
  493.  * `cap' to "trick" Card Services into tolerating large "I/O memory" 
  494.  * addresses. Also set is SS_CAP_STATIC_MAP, which disables the memory
  495.  * resource database check. (Mapped memory is set up within the socket
  496.  * driver itself.)
  497.  *
  498.  * In conjunction with the STATIC_MAP capability is a new field,
  499.  * `io_offset', recommended by David Hinds. Rather than go through
  500.  * the SetIOMap interface (which is not quite suited for communicating
  501.  * window locations up from the socket driver), we just pass up
  502.  * an offset which is applied to client-requested base I/O addresses
  503.  * in alloc_io_space().
  504.  *
  505.  * Returns: 0 on success, -1 if no pin has been configured for `sock'
  506.  */
  507. static int pxa_pcmcia_inquire_socket(unsigned int sock,
  508. socket_cap_t *cap){
  509.   struct pcmcia_irq_info irq_info;
  510.   DEBUG(3, "%s() for sock %un", __FUNCTION__, sock);
  511.   if(sock>=pxa_pcmcia_socket_count){
  512.     printk(KERN_ERR "pxa_cs: socket %u not configuredn", sock);
  513.     return -1;
  514.   }
  515.   /* SS_CAP_PAGE_REGS: used by setup_cis_mem() in cistpl.c to set the
  516.    *   force_low argument to validate_mem() in rsrc_mgr.c -- since in
  517.    *   general, the mapped * addresses of the PCMCIA memory regions
  518.    *   will not be within 0xffff, setting force_low would be
  519.    *   undesirable.
  520.    *
  521.    * SS_CAP_STATIC_MAP: don't bother with the (user-configured) memory
  522.    *   resource database; we instead pass up physical address ranges
  523.    *   and allow other parts of Card Services to deal with remapping.
  524.    *
  525.    * SS_CAP_PCCARD: we can deal with 16-bit PCMCIA & CF cards, but
  526.    *   not 32-bit CardBus devices.
  527.    */
  528.   cap->features=(SS_CAP_PAGE_REGS  | SS_CAP_STATIC_MAP | SS_CAP_PCCARD);
  529.   irq_info.sock=sock;
  530.   irq_info.irq=-1;
  531.   if(pcmcia_low_level->get_irq_info(&irq_info)<0){
  532.     printk(KERN_ERR "Error obtaining IRQ info from kernel for socket %un",
  533.    sock);
  534.     return -1;
  535.   }
  536.   cap->irq_mask=0;
  537.   cap->map_size=PAGE_SIZE;
  538.   cap->pci_irq=irq_info.irq;
  539.   cap->io_offset=pxa_pcmcia_socket[sock].virt_io;
  540.   return 0;
  541. }  /* pxa_pcmcia_inquire_socket() */
  542. /* pxa_pcmcia_get_status()
  543.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  544.  * Implements the get_status() operation for the in-kernel PCMCIA
  545.  * service (formerly SS_GetStatus in Card Services). Essentially just
  546.  * fills in bits in `status' according to internal driver state or
  547.  * the value of the voltage detect chipselect register.
  548.  *
  549.  * As a debugging note, during card startup, the PCMCIA core issues
  550.  * three set_socket() commands in a row the first with RESET deasserted,
  551.  * the second with RESET asserted, and the last with RESET deasserted
  552.  * again. Following the third set_socket(), a get_status() command will
  553.  * be issued. The kernel is looking for the SS_READY flag (see
  554.  * setup_socket(), reset_socket(), and unreset_socket() in cs.c).
  555.  *
  556.  * Returns: 0
  557.  */
  558. static int pxa_pcmcia_get_status(unsigned int sock,
  559.     unsigned int *status){
  560.   struct pcmcia_state state[PXA_PCMCIA_MAX_SOCK];
  561.   struct pcmcia_state_array state_array;
  562.   DEBUG(3, "%s() for sock %un", __FUNCTION__, sock);
  563.   state_array.size=pxa_pcmcia_socket_count;
  564.   state_array.state=state;
  565.   if((pcmcia_low_level->socket_state(&state_array))<0){
  566.     printk(KERN_ERR "Unable to get PCMCIA status from kernel.n");
  567.     return -1;
  568.   }
  569.   pxa_pcmcia_socket[sock].k_state=state[sock];
  570.   *status=state[sock].detect?SS_DETECT:0;
  571.   *status|=state[sock].ready?SS_READY:0;
  572.   /* The power status of individual sockets is not available
  573.    * explicitly from the hardware, so we just remember the state
  574.    * and regurgitate it upon request:
  575.    */
  576.   *status|=pxa_pcmcia_socket[sock].cs_state.Vcc?SS_POWERON:0;
  577.   if(pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD)
  578.     *status|=state[sock].bvd1?SS_STSCHG:0;
  579.   else {
  580.     if(state[sock].bvd1==0)
  581.       *status|=SS_BATDEAD;
  582.     else if(state[sock].bvd2==0)
  583.       *status|=SS_BATWARN;
  584.   }
  585.   *status|=state[sock].vs_3v?SS_3VCARD:0;
  586.   *status|=state[sock].vs_Xv?SS_XVCARD:0;
  587.   DEBUG(3, "tstatus: %s%s%s%s%s%s%s%sn",
  588. (*status&SS_DETECT)?"DETECT ":"",
  589. (*status&SS_READY)?"READY ":"", 
  590. (*status&SS_BATDEAD)?"BATDEAD ":"",
  591. (*status&SS_BATWARN)?"BATWARN ":"",
  592. (*status&SS_POWERON)?"POWERON ":"",
  593. (*status&SS_STSCHG)?"STSCHG ":"",
  594. (*status&SS_3VCARD)?"3VCARD ":"",
  595. (*status&SS_XVCARD)?"XVCARD ":"");
  596.   return 0;
  597. }  /* pxa_pcmcia_get_status() */
  598. /* pxa_pcmcia_get_socket()
  599.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  600.  * Implements the get_socket() operation for the in-kernel PCMCIA
  601.  * service (formerly SS_GetSocket in Card Services). Not a very 
  602.  * exciting routine.
  603.  *
  604.  * Returns: 0
  605.  */
  606. static int pxa_pcmcia_get_socket(unsigned int sock,
  607.     socket_state_t *state){
  608.   DEBUG(3, "%s() for sock %un", __FUNCTION__, sock);
  609.   /* This information was given to us in an earlier call to set_socket(),
  610.    * so we're just regurgitating it here:
  611.    */
  612.   *state=pxa_pcmcia_socket[sock].cs_state;
  613.   return 0;
  614. }
  615. /* pxa_pcmcia_set_socket()
  616.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  617.  * Implements the set_socket() operation for the in-kernel PCMCIA
  618.  * service (formerly SS_SetSocket in Card Services). We more or
  619.  * less punt all of this work and let the kernel handle the details
  620.  * of power configuration, reset, &c. We also record the value of
  621.  * `state' in order to regurgitate it to the PCMCIA core later.
  622.  *
  623.  * Returns: 0
  624.  */
  625. static int pxa_pcmcia_set_socket(unsigned int sock,
  626.     socket_state_t *state){
  627.   struct pcmcia_configure configure;
  628.   DEBUG(3, "%s() for sock %un", __FUNCTION__, sock);
  629.   DEBUG(3, "tmask:  %s%s%s%s%s%sntflags: %s%s%s%s%s%sn"
  630. "tVcc %d  Vpp %d  irq %dn",
  631. (state->csc_mask==0)?"<NONE>":"",
  632. (state->csc_mask&SS_DETECT)?"DETECT ":"",
  633. (state->csc_mask&SS_READY)?"READY ":"",
  634. (state->csc_mask&SS_BATDEAD)?"BATDEAD ":"",
  635. (state->csc_mask&SS_BATWARN)?"BATWARN ":"",
  636. (state->csc_mask&SS_STSCHG)?"STSCHG ":"",
  637. (state->flags==0)?"<NONE>":"",
  638. (state->flags&SS_PWR_AUTO)?"PWR_AUTO ":"",
  639. (state->flags&SS_IOCARD)?"IOCARD ":"",
  640. (state->flags&SS_RESET)?"RESET ":"",
  641. (state->flags&SS_SPKR_ENA)?"SPKR_ENA ":"",
  642. (state->flags&SS_OUTPUT_ENA)?"OUTPUT_ENA ":"",
  643. state->Vcc, state->Vpp, state->io_irq);
  644.   configure.sock=sock;
  645.   configure.vcc=state->Vcc;
  646.   configure.vpp=state->Vpp;
  647.   configure.output=(state->flags&SS_OUTPUT_ENA)?1:0;
  648.   configure.speaker=(state->flags&SS_SPKR_ENA)?1:0;
  649.   configure.reset=(state->flags&SS_RESET)?1:0;
  650.   if(pcmcia_low_level->configure_socket(&configure)<0){
  651.     printk(KERN_ERR "Unable to configure socket %un", sock);
  652.     return -1;
  653.   }
  654.   pxa_pcmcia_socket[sock].cs_state=*state;
  655.   
  656.   return 0;
  657. }  /* pxa_pcmcia_set_socket() */
  658. /* pxa_pcmcia_get_io_map()
  659.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  660.  * Implements the get_io_map() operation for the in-kernel PCMCIA
  661.  * service (formerly SS_GetIOMap in Card Services). Just returns an
  662.  * I/O map descriptor which was assigned earlier by a set_io_map().
  663.  *
  664.  * Returns: 0 on success, -1 if the map index was out of range
  665.  */
  666. static int pxa_pcmcia_get_io_map(unsigned int sock,
  667.     struct pccard_io_map *map){
  668.   DEBUG(4, "%s() for sock %un", __FUNCTION__, sock);
  669.   if(map->map>=MAX_IO_WIN){
  670.     printk(KERN_ERR "%s(): map (%d) out of rangen", __FUNCTION__,
  671.    map->map);
  672.     return -1;
  673.   }
  674.   *map=pxa_pcmcia_socket[sock].io_map[map->map];
  675.   return 0;
  676. }
  677. /* pxa_pcmcia_set_io_map()
  678.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  679.  * Implements the set_io_map() operation for the in-kernel PCMCIA
  680.  * service (formerly SS_SetIOMap in Card Services). We configure
  681.  * the map speed as requested, but override the address ranges
  682.  * supplied by Card Services.
  683.  *
  684.  * Returns: 0 on success, -1 on error
  685.  */
  686. static int pxa_pcmcia_set_io_map(unsigned int sock,
  687.     struct pccard_io_map *map){
  688.   unsigned int clock, speed;
  689.   unsigned long mecr, start;
  690.   DEBUG(4, "%s() for sock %un", __FUNCTION__, sock);
  691.   DEBUG(4, "tmap %u  speed %untstart 0x%08lx  stop 0x%08lxn"
  692. "tflags: %s%s%s%s%s%s%s%sn",
  693. map->map, map->speed, map->start, map->stop,
  694. (map->flags==0)?"<NONE>":"",
  695. (map->flags&MAP_ACTIVE)?"ACTIVE ":"",
  696. (map->flags&MAP_16BIT)?"16BIT ":"",
  697. (map->flags&MAP_AUTOSZ)?"AUTOSZ ":"",
  698. (map->flags&MAP_0WS)?"0WS ":"",
  699. (map->flags&MAP_WRPROT)?"WRPROT ":"",
  700. (map->flags&MAP_USE_WAIT)?"USE_WAIT ":"",
  701. (map->flags&MAP_PREFETCH)?"PREFETCH ":"");
  702.   if(map->map>=MAX_IO_WIN){
  703.     printk(KERN_ERR "%s(): map (%d) out of rangen", __FUNCTION__,
  704.    map->map);
  705.     return -1;
  706.   }
  707.   if(map->flags&MAP_ACTIVE){
  708.     speed=(map->speed>0)?map->speed:PXA_PCMCIA_IO_ACCESS;
  709.     clock = get_lclk_frequency_10khz();
  710.     pxa_pcmcia_socket[sock].speed_io=speed;
  711.     if (sock == 0) {
  712.       MCIO0 = ((pxa_mcxx_setup(speed, clock)
  713. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  714.             | ((pxa_mcxx_asst(speed, clock)
  715. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  716.             | ((pxa_mcxx_hold(speed, clock)
  717. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  718.     } else {
  719.       MCIO1 = ((pxa_mcxx_setup(speed, clock)
  720. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  721.             | ((pxa_mcxx_asst(speed, clock)
  722. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  723.             | ((pxa_mcxx_hold(speed, clock)
  724. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  725.     }
  726.     DEBUG(4, "%s(): FAST%u %lx  BSM%u %lx  BSA%u %lx  BSIO%u %lxn",
  727.   __FUNCTION__, sock, MECR_FAST_GET(mecr, sock), sock,
  728.   MECR_BSM_GET(mecr, sock), sock, MECR_BSA_GET(mecr, sock), 
  729.   sock, MECR_BSIO_GET(mecr, sock));
  730.   }
  731.   start=map->start;
  732.   if(map->stop==1)
  733.     map->stop=PAGE_SIZE-1;
  734.   map->start=pxa_pcmcia_socket[sock].virt_io;
  735.   map->stop=map->start+(map->stop-start);
  736.   pxa_pcmcia_socket[sock].io_map[map->map]=*map;
  737.   return 0;
  738. }  /* pxa_pcmcia_set_io_map() */
  739. /* pxa_pcmcia_get_mem_map()
  740.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  741.  * Implements the get_mem_map() operation for the in-kernel PCMCIA
  742.  * service (formerly SS_GetMemMap in Card Services). Just returns a
  743.  *  memory map descriptor which was assigned earlier by a
  744.  *  set_mem_map() request.
  745.  *
  746.  * Returns: 0 on success, -1 if the map index was out of range
  747.  */
  748. static int pxa_pcmcia_get_mem_map(unsigned int sock,
  749.      struct pccard_mem_map *map){
  750.   DEBUG(4, "%s() for sock %un", __FUNCTION__, sock);
  751.   if(map->map>=MAX_WIN){
  752.     printk(KERN_ERR "%s(): map (%d) out of rangen", __FUNCTION__,
  753.    map->map);
  754.     return -1;
  755.   }
  756.   *map=pxa_pcmcia_socket[sock].mem_map[map->map];
  757.   return 0;
  758. }
  759. /* pxa_pcmcia_set_mem_map()
  760.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  761.  * Implements the set_mem_map() operation for the in-kernel PCMCIA
  762.  * service (formerly SS_SetMemMap in Card Services). We configure
  763.  * the map speed as requested, but override the address ranges
  764.  * supplied by Card Services.
  765.  *
  766.  * Returns: 0 on success, -1 on error
  767.  */
  768. static int pxa_pcmcia_set_mem_map(unsigned int sock,
  769.      struct pccard_mem_map *map){
  770.   unsigned int clock, speed;
  771.   unsigned long mecr, start;
  772.   DEBUG(4, "%s() for sock %un", __FUNCTION__, sock);
  773.   DEBUG(4, "tmap %u  speed %untsys_start  %#lxn"
  774. "tsys_stop   %#lxntcard_start %#xn"
  775. "tflags: %s%s%s%s%s%s%s%sn",
  776. map->map, map->speed, map->sys_start, map->sys_stop,
  777. map->card_start, (map->flags==0)?"<NONE>":"",
  778. (map->flags&MAP_ACTIVE)?"ACTIVE ":"",
  779. (map->flags&MAP_16BIT)?"16BIT ":"",
  780. (map->flags&MAP_AUTOSZ)?"AUTOSZ ":"",
  781. (map->flags&MAP_0WS)?"0WS ":"",
  782. (map->flags&MAP_WRPROT)?"WRPROT ":"",
  783. (map->flags&MAP_ATTRIB)?"ATTRIB ":"",
  784. (map->flags&MAP_USE_WAIT)?"USE_WAIT ":"");
  785.   if(map->map>=MAX_WIN){
  786.     printk(KERN_ERR "%s(): map (%d) out of rangen", __FUNCTION__,
  787.    map->map);
  788.     return -1;
  789.   }
  790.   if(map->flags&MAP_ACTIVE){
  791.     /* When clients issue RequestMap, the access speed is not always
  792.      * properly configured:
  793.      */
  794.     if(map->speed > 0)
  795.       speed = map->speed;
  796.     else
  797.       switch(pxa_pcmcia_socket[sock].cs_state.Vcc){
  798.       case 33:
  799. speed = PXA_PCMCIA_3V_MEM_ACCESS;
  800. break;
  801.       default:
  802. speed = PXA_PCMCIA_5V_MEM_ACCESS;
  803.       }
  804.     clock = get_lclk_frequency_10khz();
  805.     if(map->flags&MAP_ATTRIB){
  806.       if (sock == 0) {
  807.         MCATT0 = ((pxa_mcxx_setup(speed, clock)
  808. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  809.                | ((pxa_mcxx_asst(speed, clock)
  810. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  811.                | ((pxa_mcxx_hold(speed, clock)
  812. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  813.       } else {
  814.         MCATT1 = ((pxa_mcxx_setup(speed, clock)
  815. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  816.                | ((pxa_mcxx_asst(speed, clock)
  817. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  818.                | ((pxa_mcxx_hold(speed, clock)
  819. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  820.       }
  821.       pxa_pcmcia_socket[sock].speed_attr=speed;
  822.     } else {
  823.       if (sock == 0) {
  824.         MCMEM0 = ((pxa_mcxx_setup(speed, clock)
  825. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  826.                | ((pxa_mcxx_asst(speed, clock)
  827. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  828.                | ((pxa_mcxx_hold(speed, clock)
  829. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  830.       } else {
  831.         MCMEM1 = ((pxa_mcxx_setup(speed, clock)
  832. & MCXX_SETUP_MASK) << MCXX_SETUP_SHIFT)
  833.                | ((pxa_mcxx_asst(speed, clock)
  834. & MCXX_ASST_MASK) << MCXX_ASST_SHIFT)
  835.                | ((pxa_mcxx_hold(speed, clock)
  836. & MCXX_HOLD_MASK) << MCXX_HOLD_SHIFT);
  837.       }
  838.       pxa_pcmcia_socket[sock].speed_mem=speed;
  839.     }
  840.     DEBUG(4, "%s(): FAST%u %lx  BSM%u %lx  BSA%u %lx  BSIO%u %lxn",
  841.   __FUNCTION__, sock, MECR_FAST_GET(mecr, sock), sock,
  842.   MECR_BSM_GET(mecr, sock), sock, MECR_BSA_GET(mecr, sock), 
  843.   sock, MECR_BSIO_GET(mecr, sock));
  844.   }
  845.   start=map->sys_start;
  846.   if(map->sys_stop==0)
  847.     map->sys_stop=PAGE_SIZE-1;
  848.   map->sys_start=(map->flags & MAP_ATTRIB)?
  849.     pxa_pcmcia_socket[sock].phys_attr:
  850.     pxa_pcmcia_socket[sock].phys_mem;
  851.   map->sys_stop=map->sys_start+(map->sys_stop-start);
  852.   pxa_pcmcia_socket[sock].mem_map[map->map]=*map;
  853.   return 0;
  854. }  /* pxa_pcmcia_set_mem_map() */
  855. #if defined(CONFIG_PROC_FS)
  856. /* pxa_pcmcia_proc_setup()
  857.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^
  858.  * Implements the proc_setup() operation for the in-kernel PCMCIA
  859.  * service (formerly SS_ProcSetup in Card Services).
  860.  *
  861.  * Returns: 0 on success, -1 on error
  862.  */
  863. static void pxa_pcmcia_proc_setup(unsigned int sock,
  864.      struct proc_dir_entry *base){
  865.   struct proc_dir_entry *entry;
  866.   DEBUG(4, "%s() for sock %un", __FUNCTION__, sock);
  867.   if((entry=create_proc_entry("status", 0, base))==NULL){
  868.     printk(KERN_ERR "Unable to install "status" procfs entryn");
  869.     return;
  870.   }
  871.   entry->read_proc=pxa_pcmcia_proc_status;
  872.   entry->data=(void *)sock;
  873. }
  874. /* pxa_pcmcia_proc_status()
  875.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  876.  * Implements the /proc/bus/pccard/??/status file.
  877.  *
  878.  * Returns: the number of characters added to the buffer
  879.  */
  880. static int pxa_pcmcia_proc_status(char *buf, char **start, off_t pos,
  881.      int count, int *eof, void *data){
  882.   char *p=buf;
  883.   unsigned int sock=(unsigned int)data;
  884.   unsigned int clock = get_lclk_frequency_10khz();
  885.   unsigned long mecr = MECR;
  886.   p+=sprintf(p, "k_flags  : %s%s%s%s%s%s%sn", 
  887.      pxa_pcmcia_socket[sock].k_state.detect?"detect ":"",
  888.      pxa_pcmcia_socket[sock].k_state.ready?"ready ":"",
  889.      pxa_pcmcia_socket[sock].k_state.bvd1?"bvd1 ":"",
  890.      pxa_pcmcia_socket[sock].k_state.bvd2?"bvd2 ":"",
  891.      pxa_pcmcia_socket[sock].k_state.wrprot?"wrprot ":"",
  892.      pxa_pcmcia_socket[sock].k_state.vs_3v?"vs_3v ":"",
  893.      pxa_pcmcia_socket[sock].k_state.vs_Xv?"vs_Xv ":"");
  894.   p+=sprintf(p, "status   : %s%s%s%s%s%s%s%s%sn",
  895.      pxa_pcmcia_socket[sock].k_state.detect?"SS_DETECT ":"",
  896.      pxa_pcmcia_socket[sock].k_state.ready?"SS_READY ":"",
  897.      pxa_pcmcia_socket[sock].cs_state.Vcc?"SS_POWERON ":"",
  898.      pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD?
  899.      "SS_IOCARD ":"",
  900.      (pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD &&
  901.       pxa_pcmcia_socket[sock].k_state.bvd1)?"SS_STSCHG ":"",
  902.      ((pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD)==0 &&
  903.       (pxa_pcmcia_socket[sock].k_state.bvd1==0))?"SS_BATDEAD ":"",
  904.      ((pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD)==0 &&
  905.       (pxa_pcmcia_socket[sock].k_state.bvd2==0))?"SS_BATWARN ":"",
  906.      pxa_pcmcia_socket[sock].k_state.vs_3v?"SS_3VCARD ":"",
  907.      pxa_pcmcia_socket[sock].k_state.vs_Xv?"SS_XVCARD ":"");
  908.   p+=sprintf(p, "mask     : %s%s%s%s%sn",
  909.      pxa_pcmcia_socket[sock].cs_state.csc_mask&SS_DETECT?
  910.      "SS_DETECT ":"",
  911.      pxa_pcmcia_socket[sock].cs_state.csc_mask&SS_READY?
  912.      "SS_READY ":"",
  913.      pxa_pcmcia_socket[sock].cs_state.csc_mask&SS_BATDEAD?
  914.      "SS_BATDEAD ":"",
  915.      pxa_pcmcia_socket[sock].cs_state.csc_mask&SS_BATWARN?
  916.      "SS_BATWARN ":"",
  917.      pxa_pcmcia_socket[sock].cs_state.csc_mask&SS_STSCHG?
  918.      "SS_STSCHG ":"");
  919.   p+=sprintf(p, "cs_flags : %s%s%s%s%sn",
  920.      pxa_pcmcia_socket[sock].cs_state.flags&SS_PWR_AUTO?
  921.      "SS_PWR_AUTO ":"",
  922.      pxa_pcmcia_socket[sock].cs_state.flags&SS_IOCARD?
  923.      "SS_IOCARD ":"",
  924.      pxa_pcmcia_socket[sock].cs_state.flags&SS_RESET?
  925.      "SS_RESET ":"",
  926.      pxa_pcmcia_socket[sock].cs_state.flags&SS_SPKR_ENA?
  927.      "SS_SPKR_ENA ":"",
  928.      pxa_pcmcia_socket[sock].cs_state.flags&SS_OUTPUT_ENA?
  929.      "SS_OUTPUT_ENA ":"");
  930.   p+=sprintf(p, "Vcc      : %dn", pxa_pcmcia_socket[sock].cs_state.Vcc);
  931.   p+=sprintf(p, "Vpp      : %dn", pxa_pcmcia_socket[sock].cs_state.Vpp);
  932.   p+=sprintf(p, "irq      : %dn", pxa_pcmcia_socket[sock].cs_state.io_irq);
  933.   p+=sprintf(p, "I/O      : %u (%u)n", pxa_pcmcia_socket[sock].speed_io,
  934.              sock ?
  935.                pxa_pcmcia_cmd_time(clock,
  936. ((MCIO1 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)) :
  937.                pxa_pcmcia_cmd_time(clock,
  938. ((MCIO0 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)));
  939.   p+=sprintf(p, "attribute: %u (%u)n", pxa_pcmcia_socket[sock].speed_attr,
  940.              sock ?
  941.                pxa_pcmcia_cmd_time(clock,
  942. ((MCATT1 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)) :
  943.                pxa_pcmcia_cmd_time(clock,
  944. ((MCATT0 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)));
  945.   p+=sprintf(p, "common   : %u (%u)n", pxa_pcmcia_socket[sock].speed_mem,
  946.              sock ?
  947.                pxa_pcmcia_cmd_time(clock,
  948. ((MCMEM1 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)) :
  949.                pxa_pcmcia_cmd_time(clock,
  950. ((MCMEM0 >> MCXX_ASST_SHIFT) & MCXX_ASST_MASK)));
  951.   return p-buf;
  952. }
  953. #endif  /* defined(CONFIG_PROC_FS) */
  954. #ifdef CONFIG_CPU_FREQ
  955. /* pxa_pcmcia_update_mecr()
  956.  * ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  957.  * When pxa_pcmcia_notifier() decides that a MECR adjustment (due
  958.  * to a core clock frequency change) is needed, this routine establishes
  959.  * new BS_xx values consistent with the clock speed `clock'.
  960.  */
  961. static void pxa_pcmcia_update_mecr(unsigned int clock){
  962.   unsigned int sock;
  963.   for(sock = 0; sock < PXA_PCMCIA_MAX_SOCK; ++sock){
  964.     // REVISIT: MCXX macros needed here
  965.     // MECR_BSIO_SET(mecr, sock,
  966. //    pxa_pcmcia_mecr_bs(pxa_pcmcia_socket[sock].speed_io,
  967. //  clock));
  968.     // MECR_BSA_SET(mecr, sock,
  969. //   pxa_pcmcia_mecr_bs(pxa_pcmcia_socket[sock].speed_attr,
  970. //         clock));
  971.     // MECR_BSM_SET(mecr, sock,
  972. //   pxa_pcmcia_mecr_bs(pxa_pcmcia_socket[sock].speed_mem,
  973. //         clock));
  974.   }
  975. }
  976. /* pxa_pcmcia_notifier()
  977.  * ^^^^^^^^^^^^^^^^^^^^^^^^
  978.  * When changing the processor core clock frequency, it is necessary
  979.  * to adjust the MECR timings accordingly. We've recorded the timings
  980.  * requested by Card Services, so this is just a matter of finding
  981.  * out what our current speed is, and then recomputing the new MECR
  982.  * values.
  983.  *
  984.  * Returns: 0 on success, -1 on error
  985.  */
  986. static int pxa_pcmcia_notifier(struct notifier_block *nb,
  987.   unsigned long val, void *data){
  988.   struct cpufreq_info *ci = data;
  989.   switch(val){
  990.   case CPUFREQ_MINMAX:
  991.     break;
  992.   case CPUFREQ_PRECHANGE:
  993.     if(ci->new_freq > ci->old_freq){
  994.       DEBUG(2, "%s(): new frequency %u.%uMHz > %u.%uMHz, pre-updatingn",
  995.     __FUNCTION__,
  996.     ci->new_freq / 1000, (ci->new_freq / 100) % 10,
  997.     ci->old_freq / 1000, (ci->old_freq / 100) % 10);
  998.       pxa_pcmcia_update_mecr(ci->new_freq);
  999.     }
  1000.     break;
  1001.   case CPUFREQ_POSTCHANGE:
  1002.     if(ci->new_freq < ci->old_freq){
  1003.       DEBUG(2, "%s(): new frequency %u.%uMHz < %u.%uMHz, post-updatingn",
  1004.     __FUNCTION__,
  1005.     ci->new_freq / 1000, (ci->new_freq / 100) % 10,
  1006.     ci->old_freq / 1000, (ci->old_freq / 100) % 10);
  1007.       pxa_pcmcia_update_mecr(ci->new_freq);
  1008.     }
  1009.     break;
  1010.   default:
  1011.     printk(KERN_ERR "%s(): unknown CPU frequency event %lxn", __FUNCTION__,
  1012.    val);
  1013.     return -1;
  1014.   }
  1015.   return 0;
  1016. }
  1017. static struct notifier_block pxa_pcmcia_notifier_block = {
  1018.   notifier_call: pxa_pcmcia_notifier
  1019. };
  1020. #endif