qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 01/13] mxs/imx23: Add main header file


From: Michel Pollet
Subject: [Qemu-devel] [PATCH 01/13] mxs/imx23: Add main header file
Date: Wed, 11 Dec 2013 13:56:20 +0000

Header file containing most of the base addresses and IO registers
needed for the Freescale mxs/imx23 SoC emumation.
Also contains a generic helper to implement the SET/AND/OR/XOR trick
shared by pretty much all of the IO blocks on this SoC

Signed-off-by: Michel Pollet <address@hidden>
---
 hw/arm/mxs.h | 208 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 208 insertions(+)
 create mode 100644 hw/arm/mxs.h

diff --git a/hw/arm/mxs.h b/hw/arm/mxs.h
new file mode 100644
index 0000000..91d3ddb
--- /dev/null
+++ b/hw/arm/mxs.h
@@ -0,0 +1,208 @@
+/*
+ * mxs.h
+ *
+ * Copyright: Michel Pollet <address@hidden>
+ *
+ * QEMU Licence, the bits that aren't from linux's
+ */
+/*
+ * Copyright (C) 2009-2010 Freescale Semiconductor, Inc. All Rights Reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef MXS_H_
+#define MXS_H_
+
+/*
+ * OCRAM
+ */
+#define MX23_OCRAM_BASE_ADDR           0x00000000
+#define MX23_OCRAM_SIZE                        SZ_32K
+
+/*
+ * IO
+ */
+#define MX23_IO_BASE_ADDR              0x80000000
+#define MX23_IO_SIZE                   SZ_1M
+
+#define MX23_ICOLL_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x000000)
+#define MX23_APBH_DMA_BASE_ADDR                (MX23_IO_BASE_ADDR + 0x004000)
+#define MX23_BCH_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x00a000)
+#define MX23_GPMI_BASE_ADDR            (MX23_IO_BASE_ADDR + 0x00c000)
+#define MX23_SSP1_BASE_ADDR            (MX23_IO_BASE_ADDR + 0x010000)
+#define MX23_PINCTRL_BASE_ADDR         (MX23_IO_BASE_ADDR + 0x018000)
+#define MX23_DIGCTL_BASE_ADDR          (MX23_IO_BASE_ADDR + 0x01c000)
+#define MX23_ETM_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x020000)
+#define MX23_APBX_DMA_BASE_ADDR                (MX23_IO_BASE_ADDR + 0x024000)
+#define MX23_DCP_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x028000)
+#define MX23_PXP_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x02a000)
+#define MX23_OCOTP_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x02c000)
+#define MX23_AXI_AHB0_BASE_ADDR                (MX23_IO_BASE_ADDR + 0x02e000)
+#define MX23_LCDIF_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x030000)
+#define MX23_SSP2_BASE_ADDR            (MX23_IO_BASE_ADDR + 0x034000)
+#define MX23_TVENC_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x038000)
+#define MX23_CLKCTRL_BASE_ADDR         (MX23_IO_BASE_ADDR + 0x040000)
+#define MX23_SAIF0_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x042000)
+#define MX23_POWER_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x044000)
+#define MX23_SAIF1_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x046000)
+#define MX23_AUDIOOUT_BASE_ADDR                (MX23_IO_BASE_ADDR + 0x048000)
+#define MX23_AUDIOIN_BASE_ADDR         (MX23_IO_BASE_ADDR + 0x04c000)
+#define MX23_LRADC_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x050000)
+#define MX23_SPDIF_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x054000)
+#define MX23_I2C_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x058000)
+#define MX23_RTC_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x05c000)
+#define MX23_PWM_BASE_ADDR             (MX23_IO_BASE_ADDR + 0x064000)
+#define MX23_TIMROT_BASE_ADDR          (MX23_IO_BASE_ADDR + 0x068000)
+#define MX23_AUART1_BASE_ADDR          (MX23_IO_BASE_ADDR + 0x06c000)
+#define MX23_AUART2_BASE_ADDR          (MX23_IO_BASE_ADDR + 0x06e000)
+#define MX23_DUART_BASE_ADDR           (MX23_IO_BASE_ADDR + 0x070000)
+#define MX23_USBPHY_BASE_ADDR          (MX23_IO_BASE_ADDR + 0x07c000)
+#define MX23_USBCTRL_BASE_ADDR         (MX23_IO_BASE_ADDR + 0x080000)
+#define MX23_DRAM_BASE_ADDR            (MX23_IO_BASE_ADDR + 0x0e0000)
+
+#define MX23_IO_P2V(x)                 MXS_IO_P2V(x)
+#define MX23_IO_ADDRESS(x)             IOMEM(MX23_IO_P2V(x))
+
+/*
+ * IRQ
+ */
+#define MX23_INT_DUART                 0
+#define MX23_INT_COMMS_RX              1
+#define MX23_INT_COMMS_TX              1
+#define MX23_INT_SSP2_ERROR            2
+#define MX23_INT_VDD5V                 3
+#define MX23_INT_HEADPHONE_SHORT       4
+#define MX23_INT_DAC_DMA               5
+#define MX23_INT_DAC_ERROR             6
+#define MX23_INT_ADC_DMA               7
+#define MX23_INT_ADC_ERROR             8
+#define MX23_INT_SPDIF_DMA             9
+#define MX23_INT_SAIF2_DMA             9
+#define MX23_INT_SPDIF_ERROR           10
+#define MX23_INT_SAIF1_IRQ             10
+#define MX23_INT_SAIF2_IRQ             10
+#define MX23_INT_USB_CTRL              11
+#define MX23_INT_USB_WAKEUP            12
+#define MX23_INT_GPMI_DMA              13
+#define MX23_INT_SSP1_DMA              14
+#define MX23_INT_SSP1_ERROR            15
+#define MX23_INT_GPIO0                 16
+#define MX23_INT_GPIO1                 17
+#define MX23_INT_GPIO2                 18
+#define MX23_INT_SAIF1_DMA             19
+#define MX23_INT_SSP2_DMA              20
+#define MX23_INT_ECC8_IRQ              21
+#define MX23_INT_RTC_ALARM             22
+#define MX23_INT_AUART1_TX_DMA         23
+#define MX23_INT_AUART1                        24
+#define MX23_INT_AUART1_RX_DMA         25
+#define MX23_INT_I2C_DMA               26
+#define MX23_INT_I2C_ERROR             27
+#define MX23_INT_TIMER0                        28
+#define MX23_INT_TIMER1                        29
+#define MX23_INT_TIMER2                        30
+#define MX23_INT_TIMER3                        31
+#define MX23_INT_BATT_BRNOUT           32
+#define MX23_INT_VDDD_BRNOUT           33
+#define MX23_INT_VDDIO_BRNOUT          34
+#define MX23_INT_VDD18_BRNOUT          35
+#define MX23_INT_TOUCH_DETECT          36
+#define MX23_INT_LRADC_CH0             37
+#define MX23_INT_LRADC_CH1             38
+#define MX23_INT_LRADC_CH2             39
+#define MX23_INT_LRADC_CH3             40
+#define MX23_INT_LRADC_CH4             41
+#define MX23_INT_LRADC_CH5             42
+#define MX23_INT_LRADC_CH6             43
+#define MX23_INT_LRADC_CH7             44
+#define MX23_INT_LCDIF_DMA             45
+#define MX23_INT_LCDIF_ERROR           46
+#define MX23_INT_DIGCTL_DEBUG_TRAP     47
+#define MX23_INT_RTC_1MSEC             48
+#define MX23_INT_DRI_DMA               49
+#define MX23_INT_DRI_ATTENTION         50
+#define MX23_INT_GPMI_ATTENTION                51
+#define MX23_INT_IR                    52
+#define MX23_INT_DCP_VMI               53
+#define MX23_INT_DCP                   54
+#define MX23_INT_BCH                   56
+#define MX23_INT_PXP                   57
+#define MX23_INT_AUART2_TX_DMA         58
+#define MX23_INT_AUART2                        59
+#define MX23_INT_AUART2_RX_DMA         60
+#define MX23_INT_VDAC_DETECT           61
+#define MX23_INT_VDD5V_DROOP           64
+#define MX23_INT_DCDC4P2_BO            65
+
+/*
+ * APBH DMA
+ */
+#define MX23_DMA_SSP1                  1
+#define MX23_DMA_SSP2                  2
+#define MX23_DMA_GPMI0                 4
+#define MX23_DMA_GPMI1                 5
+#define MX23_DMA_GPMI2                 6
+#define MX23_DMA_GPMI3                 7
+
+/*
+ * APBX DMA
+ */
+#define MX23_DMA_ADC                   0
+#define MX23_DMA_DAC                   1
+#define MX23_DMA_SPDIF                 2
+#define MX23_DMA_I2C                   3
+#define MX23_DMA_SAIF0                 4
+#define MX23_DMA_UART0_RX              6
+#define MX23_DMA_UART0_TX              7
+#define MX23_DMA_UART1_RX              8
+#define MX23_DMA_UART1_TX              9
+#define MX23_DMA_SAIF1                 10
+
+/*
+ * This is a generic function that handles write to IO register adresses
+ * This method of writing to peripherals IOs is shared by all the specific
+ * mxs IO blocks, thus this shared inline helper.
+ */
+static inline uint32_t mxs_write(
+        uint32_t * dst, hwaddr offset,
+        uint32_t value, unsigned size)
+{
+    if (!dst) {
+        return 0;
+    }
+    uint32_t oldvalue = *dst;
+    switch (offset & 0xf) {
+        case 0:
+            *dst = value;
+            break;
+        case 4:
+            *dst |= value;
+            break;
+        case 8:
+            *dst &= ~value;
+            break;
+        case 0xc:
+            *dst ^= value;
+            break;
+        default:
+            qemu_log_mask(LOG_GUEST_ERROR,
+                    "%s: bad offset 0x%x\n", __func__, (int) offset);
+            break;
+    }
+    return oldvalue;
+}
+
+#endif /* MXS_H_ */
-- 
1.8.5.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]