Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com> |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 36bf446 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 7 | #include <irq_func.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame^] | 8 | #include <asm/cache.h> |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 9 | |
| 10 | /* |
| 11 | * cleanup_before_linux() is called just before we call linux |
| 12 | * it prepares the processor for linux |
| 13 | * |
| 14 | * we disable interrupt and caches. |
| 15 | */ |
| 16 | int cleanup_before_linux(void) |
| 17 | { |
| 18 | disable_interrupts(); |
| 19 | |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 20 | cache_flush(); |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 21 | |
| 22 | return 0; |
| 23 | } |