Symbol: comparator
drivers/hwtracing/coresight/coresight-etm4x-core.c
1600
u64 start, u64 stop, int comparator)
drivers/hwtracing/coresight/coresight-etm4x-core.c
1605
config->addr_val[comparator] = start;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1606
config->addr_acc[comparator] = access_type;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1607
config->addr_type[comparator] = ETM_ADDR_TYPE_RANGE;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1610
config->addr_val[comparator + 1] = stop;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1611
config->addr_acc[comparator + 1] = access_type;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1612
config->addr_type[comparator + 1] = ETM_ADDR_TYPE_RANGE;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1629
config->viiectlr |= BIT(comparator / 2);
drivers/hwtracing/coresight/coresight-etm4x-core.c
1633
u64 address, int comparator,
drivers/hwtracing/coresight/coresight-etm4x-core.c
1640
config->addr_val[comparator] = address;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1641
config->addr_acc[comparator] = access_type;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1642
config->addr_type[comparator] = type;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1650
config->vissctlr |= BIT(shift + comparator);
drivers/hwtracing/coresight/coresight-etm4x-core.c
1727
int i, comparator, ret = 0;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1750
comparator = etm4_get_next_comparator(drvdata, type);
drivers/hwtracing/coresight/coresight-etm4x-core.c
1751
if (comparator < 0) {
drivers/hwtracing/coresight/coresight-etm4x-core.c
1752
ret = comparator;
drivers/hwtracing/coresight/coresight-etm4x-core.c
1761
comparator);
drivers/hwtracing/coresight/coresight-etm4x-core.c
1780
comparator, type);
drivers/mfd/tps65911-comparator.c
38
static struct comparator tps_comparators[] = {
drivers/mfd/tps65911-comparator.c
55
struct comparator tps_comp = tps_comparators[id];
drivers/mfd/tps65911-comparator.c
79
struct comparator tps_comp = tps_comparators[id];
drivers/phy/ti/phy-omap-usb2.c
102
int omap_usb2_set_comparator(struct phy_companion *comparator)
drivers/phy/ti/phy-omap-usb2.c
111
phy->comparator = comparator;
drivers/phy/ti/phy-omap-usb2.c
120
if (!phy->comparator || !phy->comparator->set_vbus)
drivers/phy/ti/phy-omap-usb2.c
123
return phy->comparator->set_vbus(phy->comparator, enabled);
drivers/phy/ti/phy-omap-usb2.c
130
if (!phy->comparator || !phy->comparator->start_srp)
drivers/phy/ti/phy-omap-usb2.c
133
return phy->comparator->start_srp(phy->comparator);
drivers/phy/ti/phy-omap-usb2.c
56
struct phy_companion *comparator;
drivers/power/supply/cpcap-charger.c
137
struct phy_companion comparator; /* For USB VBUS */
drivers/power/supply/cpcap-charger.c
522
static int cpcap_charger_set_vbus(struct phy_companion *comparator,
drivers/power/supply/cpcap-charger.c
526
container_of(comparator, struct cpcap_charger_ddata,
drivers/power/supply/cpcap-charger.c
527
comparator);
drivers/power/supply/cpcap-charger.c
924
ddata->comparator.set_vbus = cpcap_charger_set_vbus;
drivers/power/supply/cpcap-charger.c
925
error = omap_usb2_set_comparator(&ddata->comparator);
drivers/usb/phy/phy-twl6030-usb.c
100
#define comparator_to_twl(x) container_of((x), struct twl6030_usb, comparator)
drivers/usb/phy/phy-twl6030-usb.c
131
static int twl6030_start_srp(struct phy_companion *comparator)
drivers/usb/phy/phy-twl6030-usb.c
133
struct twl6030_usb *twl = comparator_to_twl(comparator);
drivers/usb/phy/phy-twl6030-usb.c
319
static int twl6030_set_vbus(struct phy_companion *comparator, bool enabled)
drivers/usb/phy/phy-twl6030-usb.c
321
struct twl6030_usb *twl = comparator_to_twl(comparator);
drivers/usb/phy/phy-twl6030-usb.c
355
twl->comparator.set_vbus = twl6030_set_vbus;
drivers/usb/phy/phy-twl6030-usb.c
356
twl->comparator.start_srp = twl6030_start_srp;
drivers/usb/phy/phy-twl6030-usb.c
358
ret = omap_usb2_set_comparator(&twl->comparator);
drivers/usb/phy/phy-twl6030-usb.c
79
struct phy_companion comparator;
include/linux/mfd/palmas.h
584
#define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator)
include/linux/phy/omap_usb.h
17
extern int omap_usb2_set_comparator(struct phy_companion *comparator);
include/linux/phy/omap_usb.h
19
static inline int omap_usb2_set_comparator(struct phy_companion *comparator)