/openbmc/linux/drivers/memory/ |
H A D | fsl-corenet-cf.c | 174 struct ccf_private *ccf; in ccf_probe() local 183 ccf = devm_kzalloc(&pdev->dev, sizeof(*ccf), GFP_KERNEL); in ccf_probe() 184 if (!ccf) in ccf_probe() 188 if (IS_ERR(ccf->regs)) in ccf_probe() 189 return PTR_ERR(ccf->regs); in ccf_probe() 191 ccf->dev = &pdev->dev; in ccf_probe() 192 ccf->info = match->data; in ccf_probe() 193 ccf->err_regs = ccf->regs + ccf->info->err_reg_offs; in ccf_probe() 195 if (ccf->info->has_brr) { in ccf_probe() 199 ccf->t1040 = true; in ccf_probe() [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/powerpc/fsl/ |
H A D | ccf.txt | 30 - fsl,ccf-num-csdids: <u32> 34 - fsl,ccf-num-snoopids: <u32> 44 fsl,ccf-num-csdids = <32>; 45 fsl,ccf-num-snoopids = <32>;
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/nginx/files/ |
H A D | nginx-fix-pidfile.patch | 38 if (!ngx_inherited && ccf->daemon) { 49 - if (ngx_create_pidfile(&ccf->pid, cycle->log) != NGX_OK) { 58 + if (ngx_create_pidfile(&ccf->pid, cycle->log) != NGX_OK) {
|
/openbmc/linux/net/can/ |
H A D | gw.c | 205 struct can_frame *ccf = (struct can_frame *)cf; in mod_retrieve_ccdlc() local 208 if (ccf->len != CAN_MAX_DLEN) in mod_retrieve_ccdlc() 212 if (ccf->len8_dlc > CAN_MAX_DLEN && ccf->len8_dlc <= CAN_MAX_RAW_DLC) in mod_retrieve_ccdlc() 213 ccf->len = ccf->len8_dlc; in mod_retrieve_ccdlc() 219 struct can_frame *ccf = (struct can_frame *)cf; in mod_store_ccdlc() local 222 ccf->len8_dlc = 0; in mod_store_ccdlc() 225 if (ccf->len <= CAN_MAX_DLEN) in mod_store_ccdlc() 229 if (ccf->len > CAN_MAX_RAW_DLC) in mod_store_ccdlc() 233 ccf->len8_dlc = ccf->len; in mod_store_ccdlc() 234 ccf->len = CAN_MAX_DLEN; in mod_store_ccdlc()
|
/openbmc/openbmc/meta-arm/meta-arm/recipes-security/trusted-services/ |
H A D | ts-uuid.inc | 6 ITS_UUID = "dc1eef48-b17a-4ccf-ac8b-dfcff7711b14"
|
/openbmc/linux/arch/arm64/boot/dts/xilinx/ |
H A D | zynqmp-zcu1275-revA.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1254-revA.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1232-revA.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm018-dc4.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm017-dc3.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
/openbmc/linux/drivers/video/fbdev/mb862xx/ |
H A D | mb862xxfb.h | 45 unsigned long ccf; /* gdc clk */ member
|
H A D | mb862xxfbdrv.c | 624 unsigned long ccf, mmr; in mb862xx_gdc_init() local 649 ccf = par->gc_mode ? par->gc_mode->ccf : GC_CCF_COT_100; in mb862xx_gdc_init() 657 outreg(host, GC_CCF, ccf); in mb862xx_gdc_init()
|
/openbmc/u-boot/arch/arm/dts/ |
H A D | zynqmp-zc1751-xm019-dc5.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1254-revA.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1275-revA.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1275-revB.dts | 14 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1232-revA.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm018-dc4.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm015-dc1.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm016-dc2.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
H A D | zynqmp-zc1751-xm017-dc3.dts | 13 #include "zynqmp-clk-ccf.dtsi"
|
/openbmc/linux/drivers/scsi/ |
H A D | esp_scsi.h | 249 #define ESP_TICK(ccf, cycle) ((7682 * (ccf) * (cycle) / 1000)) argument
|
H A D | esp_scsi.c | 2305 u8 ccf; in esp_set_clock_params() local 2341 ccf = ((fhz / 1000000) + 4) / 5; in esp_set_clock_params() 2342 if (ccf == 1) in esp_set_clock_params() 2343 ccf = 2; in esp_set_clock_params() 2350 if (fhz <= 5000000 || ccf < 1 || ccf > 8) { in esp_set_clock_params() 2352 ccf = 4; in esp_set_clock_params() 2355 esp->cfact = (ccf == 8 ? 0 : ccf); in esp_set_clock_params() 2358 esp->ctick = ESP_TICK(ccf, esp->ccycle); in esp_set_clock_params() 2359 esp->neg_defp = ESP_NEG_DEFP(fhz, ccf); in esp_set_clock_params()
|
/openbmc/linux/drivers/net/can/usb/etas_es58x/ |
H A D | es58x_core.c | 573 struct can_frame *ccf; in es58x_rx_can_msg() local 590 skb = alloc_can_skb(netdev, &ccf); in es58x_rx_can_msg() 591 cfd = (struct canfd_frame *)ccf; in es58x_rx_can_msg() 608 can_frame_set_cc_len(ccf, dlc, es58x_priv(netdev)->can.ctrlmode); in es58x_rx_can_msg() 610 ccf->can_id |= CAN_RTR_FLAG; in es58x_rx_can_msg()
|
/openbmc/linux/Documentation/devicetree/bindings/clock/ti/ |
H A D | dra7-atl.txt | 15 Provides ccf level representation of the ATL clocks to be used by drivers.
|