Skip to content
Snippets Groups Projects
Select Git revision
  • a2da37289a2f71f6d29d95d9cee44b10a887bf26
  • master default protected
  • android-7.1.2_r28_klist
  • pie-cts-release
  • pie-vts-release
  • pie-cts-dev
  • oreo-mr1-iot-release
  • sdk-release
  • oreo-m6-s4-release
  • oreo-m4-s12-release
  • pie-release
  • pie-r2-release
  • pie-r2-s1-release
  • oreo-vts-release
  • oreo-cts-release
  • oreo-dev
  • oreo-mr1-dev
  • pie-gsi
  • pie-platform-release
  • pie-dev
  • oreo-cts-dev
  • android-o-mr1-iot-release-1.0.4
  • android-9.0.0_r8
  • android-9.0.0_r7
  • android-9.0.0_r6
  • android-9.0.0_r5
  • android-8.1.0_r46
  • android-8.1.0_r45
  • android-n-iot-release-smart-display-r2
  • android-vts-8.1_r5
  • android-cts-8.1_r8
  • android-cts-8.0_r12
  • android-cts-7.1_r20
  • android-cts-7.0_r24
  • android-o-mr1-iot-release-1.0.3
  • android-cts-9.0_r1
  • android-8.1.0_r43
  • android-8.1.0_r42
  • android-n-iot-release-smart-display
  • android-p-preview-5
  • android-9.0.0_r3
41 results

NOTICE

Blame
  • atmel-pwm-bl.h 1.51 KiB
    /*
     * Copyright (C) 2007 Atmel Corporation
     *
     * Driver for the AT32AP700X PS/2 controller (PSIF).
     *
     * This program is free software; you can redistribute it and/or modify it
     * under the terms of the GNU General Public License version 2 as published
     * by the Free Software Foundation.
     */
    
    #ifndef __INCLUDE_ATMEL_PWM_BL_H
    #define __INCLUDE_ATMEL_PWM_BL_H
    
    /**
     * struct atmel_pwm_bl_platform_data
     * @pwm_channel: which PWM channel in the PWM module to use.
     * @pwm_frequency: PWM frequency to generate, the driver will try to be as
     *	close as the prescaler allows.
     * @pwm_compare_max: value to use in the PWM channel compare register.
     * @pwm_duty_max: maximum duty cycle value, must be less than or equal to
     *	pwm_compare_max.
     * @pwm_duty_min: minimum duty cycle value, must be less than pwm_duty_max.
     * @pwm_active_low: set to one if the low part of the PWM signal increases the
     *	brightness of the backlight.
     * @gpio_on: GPIO line to control the backlight on/off, set to -1 if not used.
     * @on_active_low: set to one if the on/off signal is on when GPIO is low.
     *
     * This struct must be added to the platform device in the board code. It is
     * used by the atmel-pwm-bl driver to setup the GPIO to control on/off and the
     * PWM device.
     */
    struct atmel_pwm_bl_platform_data {
    	unsigned int pwm_channel;
    	unsigned int pwm_frequency;
    	unsigned int pwm_compare_max;
    	unsigned int pwm_duty_max;
    	unsigned int pwm_duty_min;
    	unsigned int pwm_active_low;
    	int gpio_on;
    	unsigned int on_active_low;
    };
    
    #endif /* __INCLUDE_ATMEL_PWM_BL_H */