/* SPDX-License-Identifier: GPL-2.0 */ #ifndef DDK750_POWER_H__ #define DDK750_POWER_H__ enum dpms { crtDPMS_ON = 0x0, crtDPMS_STANDBY = 0x1, crtDPMS_SUSPEND = 0x2, crtDPMS_OFF = 0x3, }; #define setDAC(off) { \ poke32(MISC_CTRL, \ (peek32(MISC_CTRL) & ~MISC_CTRL_DAC_POWER_OFF) | (off)); \ } void ddk750_set_dpms(enum dpms state); void sm750_set_power_mode(unsigned int powerMode); void sm750_set_current_gate(unsigned int gate); /* * This function enable/disable the 2D engine. */ void sm750_enable_2d_engine(unsigned int enable); /* * This function enable/disable the DMA Engine */ void sm750_enable_dma(unsigned int enable); /* * This function enable/disable the GPIO Engine */ void sm750_enable_gpio(unsigned int enable); /* * This function enable/disable the I2C Engine */ void sm750_enable_i2c(unsigned int enable); #endifOverall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Sudip Mukherjee | 82 | 85.42% | 1 | 14.29% |
Arnd Bergmann | 6 | 6.25% | 1 | 14.29% |
Keerthi Reddy | 4 | 4.17% | 1 | 14.29% |
Elise Lennion | 1 | 1.04% | 1 | 14.29% |
Matthieu Simon | 1 | 1.04% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 1.04% | 1 | 14.29% |
Arushi Singhal | 1 | 1.04% | 1 | 14.29% |
Total | 96 | 100.00% | 7 | 100.00% |