summaryrefslogblamecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/gen5200/ide/ata-instance.c
blob: b2b26341f655dfd365bb44e5875761c62f0a35a5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                      
                                        


                    
                      



















                                                                                    
                                              



            
/*
 * 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.org/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;
}