blob: 86903c369697241404764d0e24d991134d050df8 [file] [log] [blame]
Donghwa Lee283591f2012-04-05 19:36:10 +00001/*
2 * (C) Copyright 2012 Samsung Electronics
3 * Donghwa Lee <dh09.lee@samsung.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Donghwa Lee283591f2012-04-05 19:36:10 +00006 */
7
8#ifndef __ASM_ARM_ARCH_SYSTEM_H_
9#define __ASM_ARM_ARCH_SYSTEM_H_
10
11#ifndef __ASSEMBLY__
12struct exynos4_sysreg {
13 unsigned char res1[0x210];
14 unsigned int display_ctrl;
15 unsigned int display_ctrl2;
16 unsigned int camera_control;
17 unsigned int audio_endian;
18 unsigned int jtag_con;
19};
20
21struct exynos5_sysreg {
22 unsigned char res1[0x214];
23 unsigned int disp1blk_cfg;
24 unsigned int disp2blk_cfg;
25 unsigned int hdcp_e_fuse;
26 unsigned int gsclblk_cfg0;
27 unsigned int gsclblk_cfg1;
28 unsigned int reserved;
29 unsigned int ispblk_cfg;
30 unsigned int usb20phy_cfg;
Rajeshwari Shinde775b6f72012-05-14 05:52:00 +000031 unsigned char res2[0x29c];
Donghwa Lee283591f2012-04-05 19:36:10 +000032 unsigned int mipi_dphy;
33 unsigned int dptx_dphy;
34 unsigned int phyclk_sel;
35};
36#endif
37
Rajeshwari Shinde71045da2012-05-14 05:52:02 +000038#define USB20_PHY_CFG_HOST_LINK_EN (1 << 0)
39
Akshay Saraswatac0d98c2015-02-20 13:27:12 +053040#ifdef CONFIG_EXYNOS5420
41/*
42 * Data Synchronization Barrier acts as a special kind of memory barrier.
43 * No instruction in program order after this instruction executes until
44 * this instruction completes. This instruction completes when:
45 * - All explicit memory accesses before this instruction complete.
46 * - All Cache, Branch predictor and TLB maintenance operations before
47 * this instruction complete.
48 */
49#define dsb() __asm__ __volatile__ ("dsb\n\t" : : );
50
51/*
52 * This instruction causes an event to be signaled to all cores
53 * within a multiprocessor system. If SEV is implemented,
54 * WFE must also be implemented.
55 */
56#define sev() __asm__ __volatile__ ("sev\n\t" : : );
57/*
58 * If the Event Register is not set, WFE suspends execution until
59 * one of the following events occurs:
60 * - an IRQ interrupt, unless masked by the CPSR I-bit
61 * - an FIQ interrupt, unless masked by the CPSR F-bit
62 * - an Imprecise Data abort, unless masked by the CPSR A-bit
63 * - a Debug Entry request, if Debug is enabled
64 * - an Event signaled by another processor using the SEV instruction.
65 * If the Event Register is set, WFE clears it and returns immediately.
66 * If WFE is implemented, SEV must also be implemented.
67 */
68#define wfe() __asm__ __volatile__ ("wfe\n\t" : : );
69
70/* Move 0xd3 value to CPSR register to enable SVC mode */
71#define svc32_mode_en() __asm__ __volatile__ \
72 ("@ I&F disable, Mode: 0x13 - SVC\n\t" \
73 "msr cpsr_c, #0x13|0xC0\n\t" : : )
74
75/* Set program counter with the given value */
76#define set_pc(x) __asm__ __volatile__ ("mov pc, %0\n\t" : : "r"(x))
77
78/* Read Main Id register */
79#define mrc_midr(x) __asm__ __volatile__ \
80 ("mrc p15, 0, %0, c0, c0, 0\n\t" : "=r"(x) : )
81
82/* Read Multiprocessor Affinity Register */
83#define mrc_mpafr(x) __asm__ __volatile__ \
84 ("mrc p15, 0, %0, c0, c0, 5\n\t" : "=r"(x) : )
85
86/* Read System Control Register */
87#define mrc_sctlr(x) __asm__ __volatile__ \
88 ("mrc p15, 0, %0, c1, c0, 0\n\t" : "=r"(x) : )
89
90/* Read Auxiliary Control Register */
91#define mrc_auxr(x) __asm__ __volatile__ \
92 ("mrc p15, 0, %0, c1, c0, 1\n\t" : "=r"(x) : )
93
94/* Read L2 Control register */
95#define mrc_l2_ctlr(x) __asm__ __volatile__ \
96 ("mrc p15, 1, %0, c9, c0, 2\n\t" : "=r"(x) : )
97
98/* Read L2 Auxilliary Control register */
99#define mrc_l2_aux_ctlr(x) __asm__ __volatile__ \
100 ("mrc p15, 1, %0, c15, c0, 0\n\t" : "=r"(x) : )
101
102/* Write System Control Register */
103#define mcr_sctlr(x) __asm__ __volatile__ \
104 ("mcr p15, 0, %0, c1, c0, 0\n\t" : : "r"(x))
105
106/* Write Auxiliary Control Register */
107#define mcr_auxr(x) __asm__ __volatile__ \
108 ("mcr p15, 0, %0, c1, c0, 1\n\t" : : "r"(x))
109
110/* Invalidate all instruction caches to PoU */
111#define mcr_icache(x) __asm__ __volatile__ \
112 ("mcr p15, 0, %0, c7, c5, 0\n\t" : : "r"(x))
113
114/* Invalidate unified TLB */
115#define mcr_tlb(x) __asm__ __volatile__ \
116 ("mcr p15, 0, %0, c8, c7, 0\n\t" : : "r"(x))
117
118/* Write L2 Control register */
119#define mcr_l2_ctlr(x) __asm__ __volatile__ \
120 ("mcr p15, 1, %0, c9, c0, 2\n\t" : : "r"(x))
121
122/* Write L2 Auxilliary Control register */
123#define mcr_l2_aux_ctlr(x) __asm__ __volatile__ \
124 ("mcr p15, 1, %0, c15, c0, 0\n\t" : : "r"(x))
125#endif
126
Rajeshwari Shinde71045da2012-05-14 05:52:02 +0000127void set_usbhost_mode(unsigned int mode);
Donghwa Lee283591f2012-04-05 19:36:10 +0000128void set_system_display_ctrl(void);
Ajay Kumarf0017172014-09-05 16:53:30 +0530129int exynos_lcd_early_init(const void *blob);
Donghwa Lee283591f2012-04-05 19:36:10 +0000130
Donghwa Lee283591f2012-04-05 19:36:10 +0000131#endif /* _EXYNOS4_SYSTEM_H */