Lines Matching refs:rn
391 struct w1_reg_num *rn) in w1_atoreg_num() argument
415 rn->family = family; in w1_atoreg_num()
416 rn->id = id; in w1_atoreg_num()
418 rn64_le = cpu_to_le64(*(u64 *)rn); in w1_atoreg_num()
419 rn->crc = w1_calc_crc8((u8 *)&rn64_le, 7); in w1_atoreg_num()
423 rn->family, (unsigned long long)rn->id, rn->crc); in w1_atoreg_num()
433 struct w1_reg_num *rn) in w1_slave_search_device() argument
438 if (sl->reg_num.family == rn->family && in w1_slave_search_device()
439 sl->reg_num.id == rn->id && in w1_slave_search_device()
440 sl->reg_num.crc == rn->crc) { in w1_slave_search_device()
454 struct w1_reg_num rn; in w1_master_attribute_store_add() local
458 if (w1_atoreg_num(dev, buf, count, &rn)) in w1_master_attribute_store_add()
462 sl = w1_slave_search_device(md, &rn); in w1_master_attribute_store_add()
471 w1_attach_slave_device(md, &rn); in w1_master_attribute_store_add()
492 struct w1_reg_num rn; in w1_master_attribute_store_remove() local
496 if (w1_atoreg_num(dev, buf, count, &rn)) in w1_master_attribute_store_remove()
500 sl = w1_slave_search_device(md, &rn); in w1_master_attribute_store_remove()
507 dev_info(dev, "Device %02x-%012llx doesn't exists\n", rn.family, in w1_master_attribute_store_remove()
508 (unsigned long long)rn.id); in w1_master_attribute_store_remove()
711 int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn) in w1_attach_slave_device() argument
732 memcpy(&sl->reg_num, rn, sizeof(sl->reg_num)); in w1_attach_slave_device()
737 rn->family, (unsigned long long)rn->id, rn->crc); in w1_attach_slave_device()
741 request_module("w1-family-0x%02X", rn->family); in w1_attach_slave_device()
745 f = w1_family_registered(rn->family); in w1_attach_slave_device()
749 rn->family, rn->family, in w1_attach_slave_device()
750 (unsigned long long)rn->id, rn->crc); in w1_attach_slave_device()
770 memcpy(msg.id.id, rn, sizeof(msg.id)); in w1_attach_slave_device()
887 struct w1_reg_num rn; in w1_reconnect_slaves() local
890 memcpy(&rn, &sl->reg_num, sizeof(rn)); in w1_reconnect_slaves()
895 w1_attach_slave_device(dev, &rn); in w1_reconnect_slaves()
907 static int w1_addr_crc_is_valid(struct w1_master *dev, u64 rn) in w1_addr_crc_is_valid() argument
909 u64 rn_le = cpu_to_le64(rn); in w1_addr_crc_is_valid()
910 struct w1_reg_num *tmp = (struct w1_reg_num *)&rn; in w1_addr_crc_is_valid()
941 void w1_slave_found(struct w1_master *dev, u64 rn) in w1_slave_found() argument
948 tmp = (struct w1_reg_num *) &rn; in w1_slave_found()
954 if (rn && w1_addr_crc_is_valid(dev, rn)) in w1_slave_found()
980 u64 last_rn, rn, tmp64; in w1_search() local
987 rn = dev->search_id; in w1_search()
995 last_rn = rn; in w1_search()
996 rn = 0; in w1_search()
1015 rv = w1_read_block(dev, (u8 *)&rn, 8); in w1_search()
1018 if (rv == 8 && rn) in w1_search()
1019 cb(dev, rn); in w1_search()
1048 rn |= (tmp64 << i); in w1_search()
1063 dev->search_id = rn; in w1_search()
1066 cb(dev, rn); in w1_search()