Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

MIPS: Netlogic: Remove NETLOGIC_ prefix

Remove NETLOGIC_ prefix from gpio register definitions, this will
bring it in-line with the other Netlogic headers.

Having NETLOGIC prefix here is misleading because these are XLR/XLS
specific register definitions.

Signed-off-by: Jayachandran C <jayachandranc@netlogicmicro.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/3754/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by

Jayachandran C and committed by
Ralf Baechle
c5a48ff8 51d1eac0

+31 -30
+30 -29
arch/mips/include/asm/netlogic/xlr/gpio.h
··· 35 35 #ifndef _ASM_NLM_GPIO_H 36 36 #define _ASM_NLM_GPIO_H 37 37 38 - #define NETLOGIC_GPIO_INT_EN_REG 0 39 - #define NETLOGIC_GPIO_INPUT_INVERSION_REG 1 40 - #define NETLOGIC_GPIO_IO_DIR_REG 2 41 - #define NETLOGIC_GPIO_IO_DATA_WR_REG 3 42 - #define NETLOGIC_GPIO_IO_DATA_RD_REG 4 38 + #define GPIO_INT_EN_REG 0 39 + #define GPIO_INPUT_INVERSION_REG 1 40 + #define GPIO_IO_DIR_REG 2 41 + #define GPIO_IO_DATA_WR_REG 3 42 + #define GPIO_IO_DATA_RD_REG 4 43 43 44 - #define NETLOGIC_GPIO_SWRESET_REG 8 45 - #define NETLOGIC_GPIO_DRAM1_CNTRL_REG 9 46 - #define NETLOGIC_GPIO_DRAM1_RATIO_REG 10 47 - #define NETLOGIC_GPIO_DRAM1_RESET_REG 11 48 - #define NETLOGIC_GPIO_DRAM1_STATUS_REG 12 49 - #define NETLOGIC_GPIO_DRAM2_CNTRL_REG 13 50 - #define NETLOGIC_GPIO_DRAM2_RATIO_REG 14 51 - #define NETLOGIC_GPIO_DRAM2_RESET_REG 15 52 - #define NETLOGIC_GPIO_DRAM2_STATUS_REG 16 44 + #define GPIO_SWRESET_REG 8 45 + #define GPIO_DRAM1_CNTRL_REG 9 46 + #define GPIO_DRAM1_RATIO_REG 10 47 + #define GPIO_DRAM1_RESET_REG 11 48 + #define GPIO_DRAM1_STATUS_REG 12 49 + #define GPIO_DRAM2_CNTRL_REG 13 50 + #define GPIO_DRAM2_RATIO_REG 14 51 + #define GPIO_DRAM2_RESET_REG 15 52 + #define GPIO_DRAM2_STATUS_REG 16 53 53 54 - #define NETLOGIC_GPIO_PWRON_RESET_CFG_REG 21 55 - #define NETLOGIC_GPIO_BIST_ALL_GO_STATUS_REG 24 56 - #define NETLOGIC_GPIO_BIST_CPU_GO_STATUS_REG 25 57 - #define NETLOGIC_GPIO_BIST_DEV_GO_STATUS_REG 26 54 + #define GPIO_PWRON_RESET_CFG_REG 21 55 + #define GPIO_BIST_ALL_GO_STATUS_REG 24 56 + #define GPIO_BIST_CPU_GO_STATUS_REG 25 57 + #define GPIO_BIST_DEV_GO_STATUS_REG 26 58 58 59 - #define NETLOGIC_GPIO_FUSE_BANK_REG 35 60 - #define NETLOGIC_GPIO_CPU_RESET_REG 40 61 - #define NETLOGIC_GPIO_RNG_REG 43 59 + #define GPIO_FUSE_BANK_REG 35 60 + #define GPIO_CPU_RESET_REG 40 61 + #define GPIO_RNG_REG 43 62 62 63 - #define NETLOGIC_PWRON_RESET_PCMCIA_BOOT 17 64 - #define NETLOGIC_GPIO_LED_BITMAP 0x1700000 65 - #define NETLOGIC_GPIO_LED_0_SHIFT 20 66 - #define NETLOGIC_GPIO_LED_1_SHIFT 24 63 + #define PWRON_RESET_PCMCIA_BOOT 17 67 64 68 - #define NETLOGIC_GPIO_LED_OUTPUT_CODE_RESET 0x01 69 - #define NETLOGIC_GPIO_LED_OUTPUT_CODE_HARD_RESET 0x02 70 - #define NETLOGIC_GPIO_LED_OUTPUT_CODE_SOFT_RESET 0x03 71 - #define NETLOGIC_GPIO_LED_OUTPUT_CODE_MAIN 0x04 65 + #define GPIO_LED_BITMAP 0x1700000 66 + #define GPIO_LED_0_SHIFT 20 67 + #define GPIO_LED_1_SHIFT 24 68 + 69 + #define GPIO_LED_OUTPUT_CODE_RESET 0x01 70 + #define GPIO_LED_OUTPUT_CODE_HARD_RESET 0x02 71 + #define GPIO_LED_OUTPUT_CODE_SOFT_RESET 0x03 72 + #define GPIO_LED_OUTPUT_CODE_MAIN 0x04 72 73 73 74 #endif
+1 -1
arch/mips/netlogic/xlr/setup.c
··· 85 85 86 86 gpiobase = nlm_mmio_base(NETLOGIC_IO_GPIO_OFFSET); 87 87 /* trigger a chip reset by writing 1 to GPIO_SWRESET_REG */ 88 - nlm_write_reg(gpiobase, NETLOGIC_GPIO_SWRESET_REG, 1); 88 + nlm_write_reg(gpiobase, GPIO_SWRESET_REG, 1); 89 89 for ( ; ; ) 90 90 cpu_wait(); 91 91 }