1*9952f691SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */ 2e6fff4aaSThierry Reding /* 3e6fff4aaSThierry Reding * Copyright (c) 2013 NVIDIA Corporation. 4e6fff4aaSThierry Reding */ 5e6fff4aaSThierry Reding 6e6fff4aaSThierry Reding /* 7e6fff4aaSThierry Reding * Function naming determines intended use: 8e6fff4aaSThierry Reding * 9e6fff4aaSThierry Reding * <x>_r(void) : Returns the offset for register <x>. 10e6fff4aaSThierry Reding * 11e6fff4aaSThierry Reding * <x>_w(void) : Returns the word offset for word (4 byte) element <x>. 12e6fff4aaSThierry Reding * 13e6fff4aaSThierry Reding * <x>_<y>_s(void) : Returns size of field <y> of register <x> in bits. 14e6fff4aaSThierry Reding * 15e6fff4aaSThierry Reding * <x>_<y>_f(u32 v) : Returns a value based on 'v' which has been shifted 16e6fff4aaSThierry Reding * and masked to place it at field <y> of register <x>. This value 17e6fff4aaSThierry Reding * can be |'d with others to produce a full register value for 18e6fff4aaSThierry Reding * register <x>. 19e6fff4aaSThierry Reding * 20e6fff4aaSThierry Reding * <x>_<y>_m(void) : Returns a mask for field <y> of register <x>. This 21e6fff4aaSThierry Reding * value can be ~'d and then &'d to clear the value of field <y> for 22e6fff4aaSThierry Reding * register <x>. 23e6fff4aaSThierry Reding * 24e6fff4aaSThierry Reding * <x>_<y>_<z>_f(void) : Returns the constant value <z> after being shifted 25e6fff4aaSThierry Reding * to place it at field <y> of register <x>. This value can be |'d 26e6fff4aaSThierry Reding * with others to produce a full register value for <x>. 27e6fff4aaSThierry Reding * 28e6fff4aaSThierry Reding * <x>_<y>_v(u32 r) : Returns the value of field <y> from a full register 29e6fff4aaSThierry Reding * <x> value 'r' after being shifted to place its LSB at bit 0. 30e6fff4aaSThierry Reding * This value is suitable for direct comparison with other unshifted 31e6fff4aaSThierry Reding * values appropriate for use in field <y> of register <x>. 32e6fff4aaSThierry Reding * 33e6fff4aaSThierry Reding * <x>_<y>_<z>_v(void) : Returns the constant value for <z> defined for 34e6fff4aaSThierry Reding * field <y> of register <x>. This value is suitable for direct 35e6fff4aaSThierry Reding * comparison with unshifted values appropriate for use in field <y> 36e6fff4aaSThierry Reding * of register <x>. 37e6fff4aaSThierry Reding */ 38e6fff4aaSThierry Reding 39e6fff4aaSThierry Reding #ifndef HOST1X_HW_HOST1X04_CHANNEL_H 40e6fff4aaSThierry Reding #define HOST1X_HW_HOST1X04_CHANNEL_H 41e6fff4aaSThierry Reding host1x_channel_fifostat_r(void)42e6fff4aaSThierry Redingstatic inline u32 host1x_channel_fifostat_r(void) 43e6fff4aaSThierry Reding { 44e6fff4aaSThierry Reding return 0x0; 45e6fff4aaSThierry Reding } 46e6fff4aaSThierry Reding #define HOST1X_CHANNEL_FIFOSTAT \ 47e6fff4aaSThierry Reding host1x_channel_fifostat_r() host1x_channel_fifostat_cfempty_v(u32 r)48e6fff4aaSThierry Redingstatic inline u32 host1x_channel_fifostat_cfempty_v(u32 r) 49e6fff4aaSThierry Reding { 50e6fff4aaSThierry Reding return (r >> 11) & 0x1; 51e6fff4aaSThierry Reding } 52e6fff4aaSThierry Reding #define HOST1X_CHANNEL_FIFOSTAT_CFEMPTY_V(r) \ 53e6fff4aaSThierry Reding host1x_channel_fifostat_cfempty_v(r) host1x_channel_dmastart_r(void)54e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmastart_r(void) 55e6fff4aaSThierry Reding { 56e6fff4aaSThierry Reding return 0x14; 57e6fff4aaSThierry Reding } 58e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMASTART \ 59e6fff4aaSThierry Reding host1x_channel_dmastart_r() host1x_channel_dmaput_r(void)60e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmaput_r(void) 61e6fff4aaSThierry Reding { 62e6fff4aaSThierry Reding return 0x18; 63e6fff4aaSThierry Reding } 64e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMAPUT \ 65e6fff4aaSThierry Reding host1x_channel_dmaput_r() host1x_channel_dmaget_r(void)66e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmaget_r(void) 67e6fff4aaSThierry Reding { 68e6fff4aaSThierry Reding return 0x1c; 69e6fff4aaSThierry Reding } 70e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMAGET \ 71e6fff4aaSThierry Reding host1x_channel_dmaget_r() host1x_channel_dmaend_r(void)72e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmaend_r(void) 73e6fff4aaSThierry Reding { 74e6fff4aaSThierry Reding return 0x20; 75e6fff4aaSThierry Reding } 76e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMAEND \ 77e6fff4aaSThierry Reding host1x_channel_dmaend_r() host1x_channel_dmactrl_r(void)78e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmactrl_r(void) 79e6fff4aaSThierry Reding { 80e6fff4aaSThierry Reding return 0x24; 81e6fff4aaSThierry Reding } 82e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMACTRL \ 83e6fff4aaSThierry Reding host1x_channel_dmactrl_r() host1x_channel_dmactrl_dmastop(void)84e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmactrl_dmastop(void) 85e6fff4aaSThierry Reding { 86e6fff4aaSThierry Reding return 1 << 0; 87e6fff4aaSThierry Reding } 88e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMACTRL_DMASTOP \ 89e6fff4aaSThierry Reding host1x_channel_dmactrl_dmastop() host1x_channel_dmactrl_dmastop_v(u32 r)90e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmactrl_dmastop_v(u32 r) 91e6fff4aaSThierry Reding { 92e6fff4aaSThierry Reding return (r >> 0) & 0x1; 93e6fff4aaSThierry Reding } 94e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMACTRL_DMASTOP_V(r) \ 95e6fff4aaSThierry Reding host1x_channel_dmactrl_dmastop_v(r) host1x_channel_dmactrl_dmagetrst(void)96e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmactrl_dmagetrst(void) 97e6fff4aaSThierry Reding { 98e6fff4aaSThierry Reding return 1 << 1; 99e6fff4aaSThierry Reding } 100e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMACTRL_DMAGETRST \ 101e6fff4aaSThierry Reding host1x_channel_dmactrl_dmagetrst() host1x_channel_dmactrl_dmainitget(void)102e6fff4aaSThierry Redingstatic inline u32 host1x_channel_dmactrl_dmainitget(void) 103e6fff4aaSThierry Reding { 104e6fff4aaSThierry Reding return 1 << 2; 105e6fff4aaSThierry Reding } 106e6fff4aaSThierry Reding #define HOST1X_CHANNEL_DMACTRL_DMAINITGET \ 107e6fff4aaSThierry Reding host1x_channel_dmactrl_dmainitget() host1x_channel_channelctrl_r(void)1082316f29fSMikko Perttunenstatic inline u32 host1x_channel_channelctrl_r(void) 1092316f29fSMikko Perttunen { 1102316f29fSMikko Perttunen return 0x98; 1112316f29fSMikko Perttunen } 1122316f29fSMikko Perttunen #define HOST1X_CHANNEL_CHANNELCTRL \ 1132316f29fSMikko Perttunen host1x_channel_channelctrl_r() host1x_channel_channelctrl_kernel_filter_gbuffer_f(u32 v)1142316f29fSMikko Perttunenstatic inline u32 host1x_channel_channelctrl_kernel_filter_gbuffer_f(u32 v) 1152316f29fSMikko Perttunen { 1162316f29fSMikko Perttunen return (v & 0x1) << 2; 1172316f29fSMikko Perttunen } 1182316f29fSMikko Perttunen #define HOST1X_CHANNEL_CHANNELCTRL_KERNEL_FILTER_GBUFFER(v) \ 1192316f29fSMikko Perttunen host1x_channel_channelctrl_kernel_filter_gbuffer_f(v) 120e6fff4aaSThierry Reding 121e6fff4aaSThierry Reding #endif 122