1*c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2*c66ec88fSEmmanuel Vadot/* 3*c66ec88fSEmmanuel Vadot * Copyright (C) 2016 Marvell Technology Group Ltd. 4*c66ec88fSEmmanuel Vadot */ 5*c66ec88fSEmmanuel Vadot 6*c66ec88fSEmmanuel Vadot/* Common definitions used by Armada 7K/8K DTs */ 7*c66ec88fSEmmanuel Vadot#define PASTER(x, y) x ## y 8*c66ec88fSEmmanuel Vadot#define EVALUATOR(x, y) PASTER(x, y) 9*c66ec88fSEmmanuel Vadot#define CP11X_LABEL(name) EVALUATOR(CP11X_NAME, EVALUATOR(_, name)) 10*c66ec88fSEmmanuel Vadot#define CP11X_NODE_NAME(name) EVALUATOR(CP11X_NAME, EVALUATOR(-, name)) 11*c66ec88fSEmmanuel Vadot#define ADDRESSIFY(addr) EVALUATOR(0x, addr) 12