Searched refs:mtable (Results 1 – 8 of 8) sorted by relevance
/linux/drivers/net/ethernet/dec/tulip/ |
H A D | eeprom.c | 120 tp->mtable = devm_kmalloc(&tp->pdev->dev, sizeof(struct mediatable) + in tulip_build_fake_mediatable() 123 if (tp->mtable == NULL) in tulip_build_fake_mediatable() 126 tp->mtable->defaultmedia = 0x800; in tulip_build_fake_mediatable() 127 tp->mtable->leafcount = 1; in tulip_build_fake_mediatable() 128 tp->mtable->csr12dir = 0x3f; /* inputs on bit7 for hsc-pci, bit6 for pci-fx */ in tulip_build_fake_mediatable() 129 tp->mtable->has_nonmii = 0; in tulip_build_fake_mediatable() 130 tp->mtable->has_reset = 0; in tulip_build_fake_mediatable() 131 tp->mtable->has_mii = 1; in tulip_build_fake_mediatable() 132 tp->mtable->csr15dir = tp->mtable->csr15val = 0; in tulip_build_fake_mediatable() 133 tp->mtable->mleaf[0].type = 1; in tulip_build_fake_mediatable() [all …]
|
H A D | media.c | 171 struct mediatable *mtable = tp->mtable; in tulip_select_media() local 175 if (mtable) { in tulip_select_media() 176 struct medialeaf *mleaf = &mtable->mleaf[tp->cur_index]; in tulip_select_media() 185 iowrite32(mtable->csr12dir | 0x100, ioaddr + CSR12); in tulip_select_media() 199 if (startup && mtable->has_reset) { in tulip_select_media() 200 struct medialeaf *rleaf = &mtable->mleaf[mtable->has_reset]; in tulip_select_media() 285 iowrite32(mtable->csr12dir | 0x100, ioaddr + CSR12); in tulip_select_media() 324 if (startup && mtable->has_reset) { in tulip_select_media() 325 struct medialeaf *rleaf = &mtable->mleaf[mtable->has_reset]; in tulip_select_media() 542 if (tp->mtable && tp->mtable->has_mii && phy_idx == 0) { in tulip_find_mii()
|
H A D | 21142.c | 129 if (tp->mtable && tp->mtable->csr15dir) { in t21142_start_nway() 130 iowrite32(tp->mtable->csr15dir, ioaddr + CSR15); in t21142_start_nway() 131 iowrite32(tp->mtable->csr15val, ioaddr + CSR15); in t21142_start_nway() 186 if (tp->mtable) { in t21142_lnk_change() 188 for (i = 0; i < tp->mtable->leafcount; i++) in t21142_lnk_change() 189 if (tp->mtable->mleaf[i].media == dev->if_port) { in t21142_lnk_change()
|
H A D | timer.c | 43 if (tp->mtable == NULL) { /* No EEPROM info, use generic code. */ in tulip_media_task() 53 mleaf = &tp->mtable->mleaf[tp->cur_index]; in tulip_media_task() 92 tp->cur_index = tp->mtable->leafcount - 1; in tulip_media_task() 94 dev->if_port = tp->mtable->mleaf[tp->cur_index].media; in tulip_media_task() 100 medianame[tp->mtable->mleaf[tp->cur_index].media]); in tulip_media_task()
|
H A D | tulip_core.c | 303 if (tp->mii_cnt || (tp->mtable && tp->mtable->has_mii)) in tulip_up() 373 if (tp->mtable == NULL) in tulip_up() 378 for (i = 0; i < tp->mtable->leafcount; i++) in tulip_up() 379 if (tp->mtable->mleaf[i].media == looking_for) { in tulip_up() 386 if ((tp->mtable->defaultmedia & 0x0800) == 0) { in tulip_up() 387 int looking_for = tp->mtable->defaultmedia & MEDIA_MASK; in tulip_up() 388 for (i = 0; i < tp->mtable->leafcount; i++) in tulip_up() 389 if (tp->mtable->mleaf[i].media == looking_for) { in tulip_up() 397 for (i = tp->mtable->leafcount - 1; in tulip_up() 398 (tulip_media_cap[tp->mtable->mleaf[i].media] & MediaAlwaysFD) && i > 0; i--) in tulip_up() [all …]
|
H A D | tulip.h | 446 struct mediatable *mtable; member
|
/linux/drivers/clk/renesas/ |
H A D | rzg2l-cpg.h | 103 const u32 *mtable; member 182 .mtable = _mtable, .flag = _clk_flags, .notifier = _notifier)
|
H A D | rzg2l-cpg.c | 91 const u32 *mtable; member 469 val = clk_mux_index_to_val(sd_mux_hw_data->mtable, CLK_MUX_ROUND_CLOSEST, index); in rzg2l_cpg_sd_clk_mux_set_parent() 497 return clk_mux_val_to_index(hw, sd_mux_hw_data->mtable, CLK_MUX_ROUND_CLOSEST, val); in rzg2l_cpg_sd_clk_mux_get_parent() 522 sd_mux_hw_data->mtable = core->mtable; in rzg2l_cpg_sd_mux_clk_register()
|