source: rtems/bsps/powerpc/gen5200/ata/idecfg.c @ fc79b26

5
Last change on this file since fc79b26 was fc79b26, checked in by Sebastian Huber <sebastian.huber@…>, on 04/23/18 at 10:53:28

bsps: Move ATA drivers to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 4.4 KB
Line 
1/*===============================================================*\
2| Project: RTEMS generic MPC5200 BSP                              |
3+-----------------------------------------------------------------+
4|                    Copyright (c) 2005                           |
5|                    Embedded Brains GmbH                         |
6|                    Obere Lagerstr. 30                           |
7|                    D-82178 Puchheim                             |
8|                    Germany                                      |
9|                    rtems@embedded-brains.de                     |
10+-----------------------------------------------------------------+
11| The license and distribution terms for this file may be         |
12| found in the file LICENSE in this distribution or at            |
13|                                                                 |
14| http://www.rtems.org/license/LICENSE.                           |
15|                                                                 |
16+-----------------------------------------------------------------+
17| this file contains the IDE configuration                        |
18\*===============================================================*/
19#include <rtems.h>
20#include <bsp.h>
21#include <bsp/irq.h>
22#include <bsp/mpc5200.h>
23#include "./pcmcia_ide.h"
24
25#include <libchip/ide_ctrl.h>
26#include <libchip/ide_ctrl_cfg.h>
27#include <libchip/ide_ctrl_io.h>
28
29/*
30 * The following table configures the IDE driver used in this BSP.
31 */
32extern ide_ctrl_fns_t mpc5200_pcmciaide_ctrl_fns;
33
34volatile uint32_t * mpc5200_ata_drive_regs[] =
35  {
36  (uint32_t *)&(mpc5200.ata_ddr),       /* data (offset 0x00)                */
37  (uint32_t *)&(mpc5200.ata_dfr_der),   /* features / error (offset 0x01)    */
38  (uint32_t *)&(mpc5200.ata_dscr),      /* sector count (offset 0x02)        */
39  (uint32_t *)&(mpc5200.ata_dsnr),      /* sector no.   / lba0 (offset 0x03) */
40  (uint32_t *)&(mpc5200.ata_dclr),      /* cylinder low / lba1 (offset 0x04) */
41  (uint32_t *)&(mpc5200.ata_dchr),      /* cylinder high/ lba2 (offset 0x05) */
42  (uint32_t *)&(mpc5200.ata_ddhr),      /* device head  / lba3 (offset 0x06) */
43  (uint32_t *)&(mpc5200.ata_dcr_dsr),   /* command /status (offset 0x07)     */
44
45  (uint32_t *)&(mpc5200.ata_dctr_dasr), /* device control / alternate status (offset 0x08) */
46  (uint32_t *)&(mpc5200.ata_ddr),       /* (offset 0x09) */
47  (uint32_t *)&(mpc5200.ata_ddr),       /* (offset 0x0A) */
48  NULL,                                 /* (offset 0x0B) */
49  NULL,                                 /* (offset 0x0C) */
50  NULL,                                 /* (offset 0x0D) */
51  NULL,                                 /* (offset 0x0E) */
52  NULL                                  /* (offset 0x0F) */
53  };
54
55/* IDE controllers Table */
56ide_controller_bsp_table_t IDE_Controller_Table[] =
57  {
58    {
59        "/dev/idepcmcia",
60    IDE_CUSTOM,                                        /* PCMCIA Flash cards emulate custom IDE controller */
61    &mpc5200_pcmciaide_ctrl_fns,                       /* pointer to function set used for IDE drivers in this BSP */
62    NULL,                                              /* no BSP dependent probe needed */
63    FALSE,                                             /* not (yet) initialized */
64    (uint32_t)0,                                     /* no port address but custom reg.set in params is used */
65#ifdef ATA_USE_INT
66    TRUE,                                              /* interrupt driven */
67#else
68    FALSE,                                             /* non interrupt driven     */
69#endif
70    BSP_SIU_IRQ_ATA,                                   /* interrupt vector         */
71    NULL                                               /* no additional parameters */
72    }
73};
74
75/* Number of rows in IDE_Controller_Table */
76unsigned long IDE_Controller_Count = sizeof(IDE_Controller_Table)/sizeof(IDE_Controller_Table[0]);
77
78uint32_t ata_pio_timings[2][6] =
79 {
80   /* PIO3 timings in nanosconds */
81   {
82   180, /* t0 cycle time */
83   80,  /* t2 DIOR-/DIOW pulse width 8 bit */
84   80,  /* t1 DIOR-/DIOW pulse width 16 bit */
85   10,  /* t4 DIOW- data hold */
86   30,  /* t1 Addr.valid to DIOR-/DIOW setup */
87   35,  /* ta IORDY setup time */
88   },
89   /* PIO4 timings in nanosconds */
90   {
91   120, /* t0 cycle time */
92   70,  /* t1 DIOR-/DIOW pulse width 8 bit */
93   70,  /* t1 DIOR-/DIOW pulse width 16 bit */
94   10,  /* t4 DIOW- data hold */
95   25,  /* t1 Addr.valid to DIOR-/DIOW setup */
96   35,  /* ta IORDY setup time */
97   }
98 };
99
100
Note: See TracBrowser for help on using the repository browser.