1*45183ccdSTaylor Simpson /* 2*45183ccdSTaylor Simpson * Copyright(c) 2019-2021 Qualcomm Innovation Center, Inc. All Rights Reserved. 3*45183ccdSTaylor Simpson * 4*45183ccdSTaylor Simpson * This program is free software; you can redistribute it and/or modify 5*45183ccdSTaylor Simpson * it under the terms of the GNU General Public License as published by 6*45183ccdSTaylor Simpson * the Free Software Foundation; either version 2 of the License, or 7*45183ccdSTaylor Simpson * (at your option) any later version. 8*45183ccdSTaylor Simpson * 9*45183ccdSTaylor Simpson * This program is distributed in the hope that it will be useful, 10*45183ccdSTaylor Simpson * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*45183ccdSTaylor Simpson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*45183ccdSTaylor Simpson * GNU General Public License for more details. 13*45183ccdSTaylor Simpson * 14*45183ccdSTaylor Simpson * You should have received a copy of the GNU General Public License 15*45183ccdSTaylor Simpson * along with this program; if not, see <http://www.gnu.org/licenses/>. 16*45183ccdSTaylor Simpson */ 17*45183ccdSTaylor Simpson 18*45183ccdSTaylor Simpson #ifndef HEXAGON_CPU_PARAM_H 19*45183ccdSTaylor Simpson #define HEXAGON_CPU_PARAM_H 20*45183ccdSTaylor Simpson 21*45183ccdSTaylor Simpson #define TARGET_PAGE_BITS 16 /* 64K pages */ 22*45183ccdSTaylor Simpson #define TARGET_LONG_BITS 32 23*45183ccdSTaylor Simpson 24*45183ccdSTaylor Simpson #define TARGET_PHYS_ADDR_SPACE_BITS 36 25*45183ccdSTaylor Simpson #define TARGET_VIRT_ADDR_SPACE_BITS 32 26*45183ccdSTaylor Simpson 27*45183ccdSTaylor Simpson #endif 28