summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/gen5200/ata/ata-instance.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/powerpc/gen5200/ata/ata-instance.c')
-rw-r--r--bsps/powerpc/gen5200/ata/ata-instance.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/bsps/powerpc/gen5200/ata/ata-instance.c b/bsps/powerpc/gen5200/ata/ata-instance.c
new file mode 100644
index 0000000000..b2b26341f6
--- /dev/null
+++ b/bsps/powerpc/gen5200/ata/ata-instance.c
@@ -0,0 +1,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.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;
+}