1 /* 2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are met: 6 * 7 * Redistributions of source code must retain the above copyright notice, this 8 * list of conditions and the following disclaimer. 9 * 10 * Redistributions in binary form must reproduce the above copyright notice, 11 * this list of conditions and the following disclaimer in the documentation 12 * and/or other materials provided with the distribution. 13 * 14 * Neither the name of ARM nor the names of its contributors may be used 15 * to endorse or promote products derived from this software without specific 16 * prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE 22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28 * POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #include <arch_helpers.h> 32 #include <assert.h> 33 #include <debug.h> 34 #include <delay_timer.h> 35 #include <mmio.h> 36 #include <m0_ctl.h> 37 #include <plat_private.h> 38 #include <rk3399_def.h> 39 #include <soc.h> 40 41 void m0_init(void) 42 { 43 /* secure config for M0 */ 44 mmio_write_32(SGRF_BASE + SGRF_PMU_CON(0), WMSK_BIT(7)); 45 mmio_write_32(SGRF_BASE + SGRF_SOC_CON6, WMSK_BIT(12)); 46 47 /* set the execute address for M0 */ 48 mmio_write_32(SGRF_BASE + SGRF_PMU_CON(3), 49 BITS_WITH_WMASK((M0_BINCODE_BASE >> 12) & 0xffff, 50 0xffff, 0)); 51 mmio_write_32(SGRF_BASE + SGRF_PMU_CON(7), 52 BITS_WITH_WMASK((M0_BINCODE_BASE >> 28) & 0xf, 53 0xf, 0)); 54 55 /* gating disable for M0 */ 56 mmio_write_32(PMUCRU_BASE + PMUCRU_GATEDIS_CON0, BIT_WITH_WMSK(1)); 57 58 /* 59 * To switch the parent to xin24M and div == 1, 60 * 61 * We need to close most of the PLLs and clocks except the OSC 24MHz 62 * durning suspend, and this should be enough to supplies the ddrfreq, 63 * For the simple handle, we just keep the fixed 24MHz to supply the 64 * suspend and ddrfreq directly. 65 */ 66 mmio_write_32(PMUCRU_BASE + PMUCRU_CLKSEL_CON0, 67 BIT_WITH_WMSK(15) | BITS_WITH_WMASK(0x0, 0x1f, 8)); 68 } 69 70 void m0_start(void) 71 { 72 /* clean the PARAM_M0_DONE flag, mean that M0 will start working */ 73 mmio_write_32(M0_PARAM_ADDR + PARAM_M0_DONE, 0); 74 dmbst(); 75 76 /* enable clocks for M0 */ 77 mmio_write_32(PMUCRU_BASE + PMUCRU_CLKGATE_CON2, 78 BITS_WITH_WMASK(0x0, 0x2f, 0)); 79 80 /* start M0 */ 81 mmio_write_32(PMUCRU_BASE + PMUCRU_SOFTRST_CON0, 82 BITS_WITH_WMASK(0x0, 0x24, 0)); 83 } 84 85 void m0_stop(void) 86 { 87 /* stop M0 */ 88 mmio_write_32(PMUCRU_BASE + PMUCRU_SOFTRST_CON0, 89 BITS_WITH_WMASK(0x24, 0x24, 0)); 90 91 /* disable clocks for M0 */ 92 mmio_write_32(PMUCRU_BASE + PMUCRU_CLKGATE_CON2, 93 BITS_WITH_WMASK(0x2f, 0x2f, 0)); 94 } 95 96 void m0_wait_done(void) 97 { 98 while (mmio_read_32(M0_PARAM_ADDR + PARAM_M0_DONE) != M0_DONE_FLAG) { 99 /* 100 * Don't starve the M0 for access to SRAM, so delay before 101 * reading the PARAM_M0_DONE value again. 102 */ 103 udelay(5); 104 dsb(); 105 } 106 } 107