summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/ide/ata-instance.c
blob: 20e8f26904ce5169f17bbe73ae2c5051316c83ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright (c) 2011-2013 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.com/license/LICENSE.
 */

#include <bsp/ata.h>
#include <bsp/fatal.h>

#include <libchip/ata.h>

#include <bsp.h>

static ata_driver_dma_pio_single ata_driver_instance;

rtems_status_code rtems_ata_initialize(
  rtems_device_major_number major,
  rtems_device_minor_number minor_arg,
  void *arg
)
{
  rtems_status_code sc = rtems_disk_io_initialize();

  if (sc == RTEMS_SUCCESSFUL) {
    bestcomm_glue_init();

    ata_driver_dma_pio_single_create(&ata_driver_instance, "/dev/hda", TASK_PCI_TX);
  } else {
    bsp_fatal(MPC5200_FATAL_ATA_DISK_IO_INIT);
  }

  return sc;
}