summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h')
-rw-r--r--firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h b/firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h
new file mode 100644
index 0000000000..bb2cced15b
--- /dev/null
+++ b/firmware/target/mips/ingenic_jz47xx/xduoo_x3/ata-sd-target.h
@@ -0,0 +1,48 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2016 by Roman Stolyarov
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef ATA_SD_TARGET_H
23#define ATA_SD_TARGET_H
24
25#include "cpu.h"
26#include "system.h"
27
28#define PIN_SD1_CD (32*0+29) /* Pin to check card insertion */
29#define IRQ_SD1_CD GPIO_IRQ(PIN_SD1_CD)
30#define GPIO_SD1_CD GPIO29
31
32#define PIN_SD2_CD (32*0+28) /* Pin to check card insertion */
33#define IRQ_SD2_CD GPIO_IRQ(PIN_SD2_CD)
34#define GPIO_SD2_CD GPIO28
35
36static inline void sd_init_gpio(void)
37{
38 __gpio_as_msc1_pd_4bit();
39 __gpio_as_msc2_pb_4bit();
40
41 __gpio_as_input(PIN_SD1_CD);
42 __gpio_as_input(PIN_SD2_CD);
43
44 __gpio_disable_pull(PIN_SD1_CD);
45 __gpio_disable_pull(PIN_SD2_CD);
46}
47
48#endif